cb323f5b4c
Moving keeps everything in the /matrix directory, so that we wouldn't contaminate anything else on the system or risk clashing with something else. Also retrieving certificates separately for the Riot and Matrix domains, which should help in multiple ways: - allows them to be very different (completely separate base domain..) - allows for Riot to be disabled for the playbook some time later and still have the code not break
29 lines
811 B
Django/Jinja
29 lines
811 B
Django/Jinja
[Unit]
|
|
Description=Matrix nginx proxy server
|
|
After=docker.service
|
|
Requires=docker.service
|
|
Requires=matrix-synapse.service
|
|
After=matrix-synapse.service
|
|
Requires=matrix-riot-web.service
|
|
After=matrix-riot-web.service
|
|
|
|
[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 \
|
|
-p 80:80 \
|
|
-p 443:443 \
|
|
--link matrix-synapse:synapse \
|
|
--link matrix-riot-web:riot \
|
|
-v {{ matrix_nginx_proxy_confd_path }}:/etc/nginx/conf.d \
|
|
-v {{ matrix_ssl_certs_path }}:/acmetool-certs \
|
|
{{ docker_nginx_image }}
|
|
ExecStop=-/usr/bin/docker kill matrix-nginx-proxy
|
|
ExecStop=-/usr/bin/docker rm matrix-nginx-proxy
|
|
Restart=always
|
|
RestartSec=30
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|