2019-05-07 21:23:35 +02:00
#jinja2: lstrip_blocks: "True"
2017-07-31 22:07:30 +02:00
[Unit]
2019-04-23 09:20:56 +02:00
Description=Synapse server
2019-01-16 17:05:48 +01:00
{% for service in matrix_synapse_systemd_required_services_list %}
Requires={{ service }}
After={{ service }}
2021-01-25 11:14:46 +01:00
2019-01-16 17:05:48 +01:00
{% endfor %}
{% for service in matrix_synapse_systemd_wanted_services_list %}
Wants={{ service }}
{% endfor %}
2021-01-25 11:14:46 +01:00
{% if matrix_synapse_workers_enabled %}
{% for matrix_synapse_worker_details in matrix_synapse_workers_enabled_list %}
Wants=matrix-synapse-worker-{{ matrix_synapse_worker_details.type }}-{{ matrix_synapse_worker_details.port }}.service
{% endfor %}
{% endif %}
2020-12-10 10:36:39 +01:00
DefaultDependencies=no
2017-07-31 22:07:30 +02:00
[Service]
Type=simple
2021-01-14 23:21:55 +01:00
Environment="HOME={{ matrix_systemd_unit_home_path }}"
2021-01-27 09:22:46 +01:00
ExecStartPre=-{{ matrix_host_command_sh }} -c '{{ matrix_host_command_docker }} kill matrix-synapse 2>/dev/null'
ExecStartPre=-{{ matrix_host_command_sh }} -c '{{ matrix_host_command_docker }} rm matrix-synapse 2>/dev/null'
2018-02-20 20:36:08 +01:00
{% if matrix_s3_media_store_enabled %}
# Allow for some time before starting, so that media store can mount.
# Mounting can happen later too, but if we start writing,
# we'd write files to the local filesystem and fusermount will complain.
2020-05-27 18:53:52 +02:00
ExecStartPre={{ matrix_host_command_sleep }} 3
2018-02-20 20:36:08 +01:00
{% endif %}
2019-01-29 17:52:02 +01:00
2020-05-27 18:53:52 +02:00
ExecStart={{ matrix_host_command_docker }} run --rm --name matrix-synapse \
2018-09-26 08:11:19 +02:00
--log-driver=none \
2019-01-27 19:25:13 +01:00
--user={{ matrix_user_uid }}:{{ matrix_user_gid }} \
2021-03-19 15:44:10 +01:00
--env=UID={{ matrix_user_uid }} \
--env=GID={{ matrix_user_gid }} \
2019-01-28 10:22:54 +01:00
--cap-drop=ALL \
2019-01-29 17:52:02 +01:00
--read-only \
--tmpfs=/tmp:rw,noexec,nosuid,size={{ matrix_synapse_tmp_directory_size_mb }}m \
2018-08-08 09:47:03 +02:00
--network={{ matrix_docker_network }} \
2019-05-25 00:41:04 +02:00
{% if matrix_synapse_container_client_api_host_bind_port %}
-p {{ matrix_synapse_container_client_api_host_bind_port }}:8008 \
2019-02-05 10:07:08 +01:00
{% endif %}
2019-05-25 00:41:04 +02:00
{% if matrix_synapse_federation_enabled and matrix_synapse_tls_federation_listener_enabled and matrix_synapse_container_federation_api_tls_host_bind_port %}
2021-11-14 22:32:25 +01:00
-p {{ matrix_synapse_container_federation_api_tls_host_bind_port }}:{{ matrix_synapse_container_default_federation_api_port }} \
2018-10-25 17:02:04 +02:00
{% endif %}
2019-05-25 00:41:04 +02:00
{% if matrix_synapse_federation_enabled and matrix_synapse_container_federation_api_plain_host_bind_port %}
-p {{ matrix_synapse_container_federation_api_plain_host_bind_port }}:8048 \
2017-09-12 11:41:44 +02:00
{% endif %}
2019-05-25 00:41:04 +02:00
{% if matrix_synapse_metrics_enabled and matrix_synapse_container_metrics_api_host_bind_port %}
-p {{ matrix_synapse_container_metrics_api_host_bind_port }}:{{ matrix_synapse_metrics_port }} \
2019-01-30 19:31:50 +01:00
{% endif %}
2019-12-05 07:07:15 +01:00
{% if matrix_synapse_manhole_enabled and matrix_synapse_container_manhole_api_host_bind_port %}
-p {{ matrix_synapse_container_manhole_api_host_bind_port }}:9000 \
{% endif %}
2020-11-24 09:15:12 +01:00
--mount type=bind,src={{ matrix_synapse_config_dir_path }},dst=/data,ro \
--mount type=bind,src={{ matrix_synapse_storage_path }},dst=/matrix-media-store-parent,bind-propagation=slave \
2018-08-17 08:02:12 +02:00
{% for volume in matrix_synapse_container_additional_volumes %}
-v {{ volume.src }}:{{ volume.dst }}:{{ volume.options }} \
{% endfor %}
2019-04-30 16:35:18 +02:00
{% for arg in matrix_synapse_container_extra_arguments %}
{{ arg }} \
{% endfor %}
2019-01-27 19:25:13 +01:00
{{ matrix_synapse_docker_image }} \
2021-03-19 07:16:59 +01:00
run -m synapse.app.homeserver -c /data/homeserver.yaml
2019-01-29 17:52:02 +01:00
2021-01-27 09:22:46 +01:00
ExecStop=-{{ matrix_host_command_sh }} -c '{{ matrix_host_command_docker }} kill matrix-synapse 2>/dev/null'
ExecStop=-{{ matrix_host_command_sh }} -c '{{ matrix_host_command_docker }} rm matrix-synapse 2>/dev/null'
2021-01-25 11:14:46 +01:00
ExecReload={{ matrix_host_command_docker }} exec matrix-synapse /bin/sh -c 'kill -HUP 1'
2017-07-31 22:07:30 +02:00
Restart=always
RestartSec=30
2019-05-16 02:41:45 +02:00
SyslogIdentifier=matrix-synapse
2017-07-31 22:07:30 +02:00
[Install]
WantedBy=multi-user.target