summary refs log tree commit diff
path: root/v1.108/systemd-with-workers/system/matrix-synapse.service
diff options
context:
space:
mode:
authorerikjohnston <erikjohnston@users.noreply.github.com>2024-05-21 09:56:00 +0000
committererikjohnston <erikjohnston@users.noreply.github.com>2024-05-21 09:56:00 +0000
commitdd734df1f85139c0876f3e05139f2de52e14c1e8 (patch)
treebc5554d758ae588761bd02ef41e98e2280f4fc16 /v1.108/systemd-with-workers/system/matrix-synapse.service
parentdeploy: 68dca8076fd992d3dc59c38287ab6183a073874d (diff)
downloadsynapse-dd734df1f85139c0876f3e05139f2de52e14c1e8.tar.xz
deploy: 8b43cc89fae94030708d20d99ee4c2017f39d95d
Diffstat (limited to 'v1.108/systemd-with-workers/system/matrix-synapse.service')
-rw-r--r--v1.108/systemd-with-workers/system/matrix-synapse.service23
1 files changed, 23 insertions, 0 deletions
diff --git a/v1.108/systemd-with-workers/system/matrix-synapse.service b/v1.108/systemd-with-workers/system/matrix-synapse.service
new file mode 100644

index 0000000000..31ceccb77f --- /dev/null +++ b/v1.108/systemd-with-workers/system/matrix-synapse.service
@@ -0,0 +1,23 @@ +[Unit] +Description=Synapse master + +# This service should be restarted when the synapse target is restarted. +PartOf=matrix-synapse.target +ReloadPropagatedFrom=matrix-synapse.target + +[Service] +Type=notify +NotifyAccess=main +User=matrix-synapse +RuntimeDirectory=synapse +WorkingDirectory=/var/lib/matrix-synapse +EnvironmentFile=-/etc/default/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 +Restart=always +RestartSec=3 +SyslogIdentifier=matrix-synapse + +[Install] +WantedBy=matrix-synapse.target