From 6410fd8d58e250a877a0bcdab06184e45e707c65 Mon Sep 17 00:00:00 2001 From: Georg Date: Wed, 21 Jul 2021 12:34:32 +0200 Subject: Initial Systemd Service Run: 1/3 Signed-off-by: Georg --- systemd/matrix-synapse.service | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 systemd/matrix-synapse.service (limited to 'systemd/matrix-synapse.service') diff --git a/systemd/matrix-synapse.service b/systemd/matrix-synapse.service new file mode 100644 index 0000000..b5cb286 --- /dev/null +++ b/systemd/matrix-synapse.service @@ -0,0 +1,23 @@ +[Unit] +Description=Matrix Homeserver +Requires=matrix-keyserver.service matrix-sydent.service +After=postgresql.service + +[Service] +#Type=notify +Type=forking +NotifyAccess=main +ExecReload=/bin/kill -HUP $MAINPID +Restart=on-abort +User=synapse +Group=matrix +WorkingDirectory=/opt/matrix +ExecStart=/opt/matrix/synapse/synapse-venv/bin/synctl start /etc/matrix-synapse/homeserver.yaml +ExecStop=/opt/matrix/synapse/synapse-venv/bin/synctl stop +SyslogIdentifier=synapse +RuntimeDirectory=matrix + +# Environment=SYNAPSE_CACHE_FACTOR=2.0 + +[Install] +WantedBy=multi-user.target -- cgit v1.2.3