2017-08-06 16:10:50 +00:00
|
|
|
server {
|
2019-01-27 18:25:13 +00:00
|
|
|
listen {{ 8080 if matrix_nginx_proxy_enabled else 80 }};
|
2019-01-16 16:05:48 +00:00
|
|
|
server_name {{ matrix_nginx_proxy_proxy_riot_hostname }};
|
2017-08-06 16:10:50 +00:00
|
|
|
|
|
|
|
server_tokens off;
|
|
|
|
|
|
|
|
location /.well-known/acme-challenge {
|
2018-08-29 06:37:44 +00:00
|
|
|
{% if matrix_nginx_proxy_enabled %}
|
|
|
|
{# Use the embedded DNS resolver in Docker containers to discover the service #}
|
|
|
|
resolver 127.0.0.11 valid=5s;
|
2019-01-27 18:25:13 +00:00
|
|
|
set $backend "matrix-certbot:8080";
|
2018-08-29 06:37:44 +00:00
|
|
|
proxy_pass http://$backend;
|
|
|
|
{% else %}
|
|
|
|
{# Generic configuration for use outside of our container setup #}
|
2019-02-04 15:49:45 +00:00
|
|
|
proxy_pass http://127.0.0.1:{{ matrix_ssl_lets_encrypt_certbot_standalone_http_port }};
|
2017-12-01 11:07:27 +00:00
|
|
|
{% endif %}
|
2017-08-06 16:10:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
location / {
|
|
|
|
return 301 https://$http_host$request_uri;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-07-31 20:07:30 +00:00
|
|
|
server {
|
2019-01-27 18:25:13 +00:00
|
|
|
listen {{ 8443 if matrix_nginx_proxy_enabled else 443 }} ssl http2;
|
|
|
|
listen [::]:{{ 8443 if matrix_nginx_proxy_enabled else 443 }} ssl http2;
|
2017-07-31 20:07:30 +00:00
|
|
|
|
2019-01-26 07:37:26 +00:00
|
|
|
server_name {{ matrix_nginx_proxy_proxy_riot_hostname }};
|
2017-07-31 20:07:30 +00:00
|
|
|
|
|
|
|
server_tokens off;
|
|
|
|
root /dev/null;
|
|
|
|
|
2018-08-17 05:00:38 +00:00
|
|
|
gzip on;
|
2018-08-17 07:44:34 +00:00
|
|
|
gzip_types text/plain application/json application/javascript text/css image/x-icon font/ttf image/gif;
|
2018-08-17 05:00:38 +00:00
|
|
|
|
2019-01-16 16:05:48 +00:00
|
|
|
ssl_certificate {{ matrix_ssl_config_dir_path }}/live/{{ matrix_nginx_proxy_proxy_riot_hostname }}/fullchain.pem;
|
|
|
|
ssl_certificate_key {{ matrix_ssl_config_dir_path }}/live/{{ matrix_nginx_proxy_proxy_riot_hostname }}/privkey.pem;
|
2018-11-02 23:20:05 +00:00
|
|
|
ssl_protocols {{ matrix_nginx_proxy_ssl_protocols }};
|
2017-07-31 20:07:30 +00:00
|
|
|
ssl_prefer_server_ciphers on;
|
|
|
|
ssl_ciphers "EECDH+AESGCM:EDH+AESGCM:AES256+EECDH:AES256+EDH";
|
|
|
|
|
2019-01-26 07:37:26 +00:00
|
|
|
location / {
|
2018-08-08 05:23:36 +00:00
|
|
|
{% if matrix_nginx_proxy_enabled %}
|
|
|
|
{# Use the embedded DNS resolver in Docker containers to discover the service #}
|
|
|
|
resolver 127.0.0.11 valid=5s;
|
2019-01-27 18:25:13 +00:00
|
|
|
set $backend "matrix-riot-web:8080";
|
2018-08-08 05:23:36 +00:00
|
|
|
proxy_pass http://$backend;
|
|
|
|
{% else %}
|
2018-08-15 07:19:31 +00:00
|
|
|
{# Generic configuration for use outside of our container setup #}
|
2019-02-04 15:49:45 +00:00
|
|
|
proxy_pass http://127.0.0.1:8765;
|
2018-08-08 05:23:36 +00:00
|
|
|
{% endif %}
|
|
|
|
|
2019-01-17 14:25:08 +00:00
|
|
|
proxy_set_header Host $host;
|
|
|
|
proxy_set_header X-Forwarded-For $remote_addr;
|
2019-01-26 07:37:26 +00:00
|
|
|
}
|
2017-08-12 12:39:21 +00:00
|
|
|
}
|