0
0
Fork 1
mirror of https://mau.dev/maunium/synapse.git synced 2024-05-19 03:53:45 +02:00
synapse/debian/matrix-synapse.service

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
824 B
SYSTEMD
Raw Permalink Normal View History

2018-12-10 18:14:34 +01:00
[Unit]
Description=Synapse Matrix homeserver
[Service]
Type=notify
2018-12-10 18:14:34 +01:00
User=matrix-synapse
WorkingDirectory=/var/lib/matrix-synapse
ExecStartPre=/opt/venvs/matrix-synapse/bin/python -m synapse.app.homeserver --config-path=/etc/matrix-synapse/homeserver.yaml --config-path=/etc/matrix-synapse/conf.d/ --generate-keys
ExecStart=/opt/venvs/matrix-synapse/bin/python -m synapse.app.homeserver --config-path=/etc/matrix-synapse/homeserver.yaml --config-path=/etc/matrix-synapse/conf.d/
ExecReload=/bin/kill -HUP $MAINPID
2018-12-10 18:14:34 +01:00
Restart=always
RestartSec=3
SyslogIdentifier=matrix-synapse
2018-12-10 18:14:34 +01:00
# The environment file is not shipped by default anymore and the below directive
# is for backwards compatibility only. Please use your homeserver.yaml if
# possible.
EnvironmentFile=-/etc/default/matrix-synapse
2018-12-10 18:14:34 +01:00
[Install]
WantedBy=multi-user.target