2015-04-29 07:22:20 -04:00
|
|
|
# This assumes that Synapse has been installed as a system package
|
2017-02-27 19:29:54 -05:00
|
|
|
# (e.g. https://www.archlinux.org/packages/community/any/matrix-synapse/ for ArchLinux)
|
2015-04-29 07:22:20 -04:00
|
|
|
# rather than in a user home directory or similar under virtualenv.
|
|
|
|
|
2015-04-28 18:20:08 -04:00
|
|
|
[Unit]
|
|
|
|
Description=Synapse Matrix homeserver
|
|
|
|
|
|
|
|
[Service]
|
|
|
|
Type=simple
|
|
|
|
User=synapse
|
|
|
|
Group=synapse
|
|
|
|
WorkingDirectory=/var/lib/synapse
|
2017-09-23 22:55:19 -04:00
|
|
|
ExecStart=/usr/bin/python2.7 -m synapse.app.homeserver --config-path=/etc/synapse/homeserver.yaml
|
2017-09-23 22:26:23 -04:00
|
|
|
ExecStop=/usr/bin/synctl stop /etc/synapse/homeserver.yaml
|
2015-04-28 18:20:08 -04:00
|
|
|
|
|
|
|
[Install]
|
|
|
|
WantedBy=multi-user.target
|
2017-09-23 22:55:19 -04:00
|
|
|
|