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 }}
|
|
|
|
{% endfor %}
|
|
|
|
{% for service in matrix_synapse_systemd_wanted_services_list %}
|
|
|
|
Wants={{ service }}
|
|
|
|
{% endfor %}
|
2017-07-31 22:07:30 +02:00
|
|
|
|
|
|
|
[Service]
|
|
|
|
Type=simple
|
|
|
|
ExecStartPre=-/usr/bin/docker kill matrix-synapse
|
|
|
|
ExecStartPre=-/usr/bin/docker rm matrix-synapse
|
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.
|
|
|
|
ExecStartPre=/bin/sleep 5
|
|
|
|
{% endif %}
|
2019-01-29 17:52:02 +01:00
|
|
|
|
2017-07-31 22:07:30 +02:00
|
|
|
ExecStart=/usr/bin/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 }} \
|
2019-01-28 10:22:54 +01:00
|
|
|
--cap-drop=ALL \
|
2019-01-27 19:25:13 +01:00
|
|
|
--entrypoint=python \
|
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-01-12 16:53:00 +01:00
|
|
|
-e SYNAPSE_CACHE_FACTOR={{ matrix_synapse_cache_factor }} \
|
2019-02-05 10:07:08 +01:00
|
|
|
{% if matrix_synapse_container_expose_client_api_port %}
|
|
|
|
-p 127.0.0.1:8008:8008 \
|
|
|
|
{% endif %}
|
|
|
|
{% if matrix_synapse_federation_enabled and matrix_synapse_tls_federation_listener_enabled %}
|
2017-07-31 22:07:30 +02:00
|
|
|
-p 8448:8448 \
|
2018-10-25 17:02:04 +02:00
|
|
|
{% endif %}
|
2019-02-05 10:07:08 +01:00
|
|
|
{% if matrix_synapse_federation_enabled and matrix_synapse_container_expose_federation_api_port %}
|
|
|
|
-p 127.0.0.1:8048:8048 \
|
2017-09-12 11:41:44 +02:00
|
|
|
{% endif %}
|
2019-01-30 19:31:50 +01:00
|
|
|
{% if matrix_synapse_container_expose_metrics_port %}
|
|
|
|
-p 127.0.0.1:{{ matrix_synapse_metrics_port }}:{{ matrix_synapse_metrics_port }} \
|
|
|
|
{% endif %}
|
2019-01-29 17:52:02 +01:00
|
|
|
-v {{ matrix_synapse_config_dir_path }}:/data:ro \
|
|
|
|
-v {{ matrix_synapse_run_path }}:/matrix-run:rw \
|
Make it safer to override matrix_synapse_media_store_path
This is described in Github issue #58.
Until now, we had the variable, but if you redefined it, you'd run
into multiple problems:
- we actually always mounted some "storage" directory to the Synapse
container. So if your media store is not there, you're out of luck
- homeserver.yaml always hardcoded the path to the media store,
as a directory called "media-store" inside the storage directory.
Relocating to outside the storage directory was out of the question.
Moreover, even if you had simply renamed the media store directory
(e.g. "media-store" -> "media_store"), it would have also caused trouble.
With this patch, we mount the media store's parent to the Synapse container.
This way, we don't care where the media store is (inside storage or
not). We also don't assume (anymore) that the final part of the path
is called "media-store" -- anything can be used.
The "storage" directory and variable (`matrix_synapse_storage_path`)
still remain for compatibility purposes. People who were previously
overriding `matrix_synapse_storage_path` can continue doing so
and their media store will be at the same place.
The playbook no longer explicitly creates the `matrix_synapse_storage_path` directory
though. It's not necessary. If the media store is specified to be within it, it will
get created when the media store directory is created by the playbook.
2018-12-20 12:39:01 +01:00
|
|
|
-v {{ matrix_synapse_base_path }}/storage:/matrix-media-store-parent: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 }} \
|
|
|
|
-m synapse.app.homeserver -c /data/homeserver.yaml
|
2019-01-29 17:52:02 +01:00
|
|
|
|
2017-07-31 22:07:30 +02:00
|
|
|
ExecStop=-/usr/bin/docker kill matrix-synapse
|
|
|
|
ExecStop=-/usr/bin/docker rm matrix-synapse
|
2019-02-06 08:25:13 +01:00
|
|
|
ExecReload=/usr/bin/docker exec matrix-synapse kill -HUP 1
|
2017-07-31 22:07:30 +02:00
|
|
|
Restart=always
|
|
|
|
RestartSec=30
|
|
|
|
|
|
|
|
[Install]
|
|
|
|
WantedBy=multi-user.target
|