2017-07-31 20:07:30 +00:00
|
|
|
[Unit]
|
|
|
|
Description=Matrix nginx proxy server
|
|
|
|
After=docker.service
|
|
|
|
Requires=docker.service
|
2018-08-08 05:23:36 +00:00
|
|
|
Wants=matrix-synapse.service
|
2018-08-21 10:34:34 +00:00
|
|
|
{% if matrix_corporal_enabled %}
|
|
|
|
Wants=matrix-corporal.service
|
|
|
|
{% endif %}
|
2018-08-07 12:39:57 +00:00
|
|
|
{% if matrix_riot_web_enabled %}
|
2018-08-08 05:23:36 +00:00
|
|
|
Wants=matrix-riot-web.service
|
2018-08-07 12:39:57 +00:00
|
|
|
{% endif %}
|
2018-08-15 07:23:22 +00:00
|
|
|
{% if matrix_mxisd_enabled %}
|
|
|
|
Wants=matrix-mxisd.service
|
|
|
|
{% endif %}
|
2017-07-31 20:07:30 +00:00
|
|
|
|
|
|
|
[Service]
|
|
|
|
Type=simple
|
|
|
|
ExecStartPre=-/usr/bin/docker kill matrix-nginx-proxy
|
|
|
|
ExecStartPre=-/usr/bin/docker rm matrix-nginx-proxy
|
|
|
|
ExecStart=/usr/bin/docker run --rm --name matrix-nginx-proxy \
|
2018-09-26 06:11:19 +00:00
|
|
|
--log-driver=none \
|
2018-08-08 07:47:03 +00:00
|
|
|
--network={{ matrix_docker_network }} \
|
2017-08-06 16:10:50 +00:00
|
|
|
-p 80:80 \
|
2017-07-31 20:07:30 +00:00
|
|
|
-p 443:443 \
|
2017-10-01 08:36:30 +00:00
|
|
|
-v {{ matrix_nginx_proxy_confd_path }}:/etc/nginx/conf.d:ro \
|
2018-08-29 06:37:44 +00:00
|
|
|
-v {{ matrix_ssl_config_dir_path }}:{{ matrix_ssl_config_dir_path }}:ro \
|
2018-09-17 07:51:46 +00:00
|
|
|
-v {{ matrix_static_files_base_path }}:{{ matrix_static_files_base_path }}:ro \
|
2018-11-01 06:46:47 +00:00
|
|
|
{{ matrix_nginx_proxy_docker_image }}
|
2017-07-31 20:07:30 +00:00
|
|
|
ExecStop=-/usr/bin/docker kill matrix-nginx-proxy
|
|
|
|
ExecStop=-/usr/bin/docker rm matrix-nginx-proxy
|
2017-09-23 12:08:54 +00:00
|
|
|
ExecReload=/usr/bin/docker exec matrix-nginx-proxy /usr/sbin/nginx -s reload
|
2017-07-31 20:07:30 +00:00
|
|
|
Restart=always
|
|
|
|
RestartSec=30
|
|
|
|
|
|
|
|
[Install]
|
|
|
|
WantedBy=multi-user.target
|