2017-08-06 18:10:50 +02:00
|
|
|
server {
|
|
|
|
listen 80;
|
2019-01-16 17:05:48 +01:00
|
|
|
server_name {{ matrix_nginx_proxy_proxy_riot_hostname }};
|
2017-08-06 18:10:50 +02:00
|
|
|
|
|
|
|
server_tokens off;
|
|
|
|
|
|
|
|
location /.well-known/acme-challenge {
|
2018-08-29 08:37:44 +02: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;
|
|
|
|
set $backend "matrix-certbot:80";
|
|
|
|
proxy_pass http://$backend;
|
|
|
|
{% else %}
|
|
|
|
{# Generic configuration for use outside of our container setup #}
|
2018-12-23 10:00:12 +01:00
|
|
|
proxy_pass http://localhost:{{ matrix_ssl_lets_encrypt_certbot_standalone_http_port }};
|
2017-12-01 12:07:27 +01:00
|
|
|
{% endif %}
|
2017-08-06 18:10:50 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
location / {
|
|
|
|
return 301 https://$http_host$request_uri;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-07-31 22:07:30 +02:00
|
|
|
server {
|
|
|
|
listen 443 ssl http2;
|
|
|
|
listen [::]:443 ssl http2;
|
|
|
|
|
2019-01-16 17:05:48 +01:00
|
|
|
server_name {{ matrix_nginx_proxy_proxy_riot_hostname }};
|
2017-07-31 22:07:30 +02:00
|
|
|
|
|
|
|
server_tokens off;
|
|
|
|
root /dev/null;
|
|
|
|
|
2018-08-17 07:00:38 +02:00
|
|
|
gzip on;
|
2018-08-17 09:44:34 +02:00
|
|
|
gzip_types text/plain application/json application/javascript text/css image/x-icon font/ttf image/gif;
|
2018-08-17 07:00:38 +02:00
|
|
|
|
2019-01-16 17:05:48 +01: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-03 00:20:05 +01:00
|
|
|
ssl_protocols {{ matrix_nginx_proxy_ssl_protocols }};
|
2017-07-31 22:07:30 +02:00
|
|
|
ssl_prefer_server_ciphers on;
|
|
|
|
ssl_ciphers "EECDH+AESGCM:EDH+AESGCM:AES256+EECDH:AES256+EDH";
|
|
|
|
|
|
|
|
location / {
|
2018-08-08 07:23:36 +02: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-11 20:20:17 +01:00
|
|
|
set $backend "matrix-riot-web:80";
|
2018-08-08 07:23:36 +02:00
|
|
|
proxy_pass http://$backend;
|
|
|
|
{% else %}
|
2018-08-15 09:19:31 +02:00
|
|
|
{# Generic configuration for use outside of our container setup #}
|
2018-08-08 07:23:36 +02:00
|
|
|
proxy_pass http://localhost:8765;
|
|
|
|
{% endif %}
|
|
|
|
|
2017-07-31 22:07:30 +02:00
|
|
|
proxy_set_header X-Forwarded-For $remote_addr;
|
|
|
|
}
|
2017-08-12 14:39:21 +02:00
|
|
|
}
|