From 63d9d909077fdbb1bcae12db1ad110b97f00b16b Mon Sep 17 00:00:00 2001 From: MatMaul Date: Tue, 25 Jul 2023 12:33:48 +0000 Subject: deploy: dbee081d149cf1b496d147e144279b621220e429 --- .../system/matrix-synapse.service | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 v1.89/systemd-with-workers/system/matrix-synapse.service (limited to 'v1.89/systemd-with-workers/system/matrix-synapse.service') diff --git a/v1.89/systemd-with-workers/system/matrix-synapse.service b/v1.89/systemd-with-workers/system/matrix-synapse.service new file mode 100644 index 0000000000..0c73fb55fb --- /dev/null +++ b/v1.89/systemd-with-workers/system/matrix-synapse.service @@ -0,0 +1,22 @@ +[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 +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 -- cgit 1.5.1