2017-08-06 16:10:50 +00:00
|
|
|
server {
|
|
|
|
listen 80;
|
|
|
|
server_name {{ hostname_matrix }};
|
|
|
|
|
|
|
|
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;
|
|
|
|
set $backend "matrix-certbot:80";
|
|
|
|
proxy_pass http://$backend;
|
|
|
|
{% else %}
|
|
|
|
{# Generic configuration for use outside of our container setup #}
|
2018-12-23 09:00:12 +00:00
|
|
|
proxy_pass http://localhost:{{ 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 {
|
2017-08-12 12:39:21 +00:00
|
|
|
listen 443 ssl http2;
|
|
|
|
listen [::]:443 ssl http2;
|
2017-07-31 20:07:30 +00:00
|
|
|
|
2017-08-12 12:39:21 +00:00
|
|
|
server_name {{ hostname_matrix }};
|
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;
|
2018-08-17 05:00:38 +00:00
|
|
|
|
2018-08-29 06:37:44 +00:00
|
|
|
ssl_certificate {{ matrix_ssl_config_dir_path }}/live/{{ hostname_matrix }}/fullchain.pem;
|
|
|
|
ssl_certificate_key {{ matrix_ssl_config_dir_path }}/live/{{ hostname_matrix }}/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";
|
|
|
|
|
2018-09-17 07:51:46 +00:00
|
|
|
location /.well-known/matrix/client {
|
|
|
|
root {{ matrix_static_files_base_path }};
|
|
|
|
expires 1m;
|
|
|
|
default_type application/json;
|
2018-11-29 06:35:57 +00:00
|
|
|
add_header Access-Control-Allow-Origin *;
|
2018-09-17 07:51:46 +00:00
|
|
|
}
|
|
|
|
|
2018-08-21 10:34:34 +00:00
|
|
|
{% if matrix_corporal_enabled and matrix_corporal_http_api_enabled %}
|
|
|
|
location /_matrix/corporal {
|
|
|
|
{% 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-corporal:41081";
|
|
|
|
proxy_pass http://$backend;
|
|
|
|
{% else %}
|
|
|
|
{# Generic configuration for use outside of our container setup #}
|
|
|
|
proxy_pass http://localhost:41081;
|
|
|
|
{% endif %}
|
|
|
|
}
|
|
|
|
{% endif %}
|
|
|
|
|
2018-08-15 07:23:22 +00:00
|
|
|
{% if matrix_mxisd_enabled %}
|
|
|
|
location /_matrix/identity {
|
|
|
|
{% 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-mxisd:8090";
|
|
|
|
proxy_pass http://$backend;
|
|
|
|
{% else %}
|
|
|
|
{# Generic configuration for use outside of our container setup #}
|
|
|
|
proxy_pass http://localhost:8090;
|
|
|
|
{% endif %}
|
|
|
|
}
|
|
|
|
{% endif %}
|
|
|
|
|
2018-10-21 21:20:37 +00:00
|
|
|
{% if matrix_mautrix_telegram_enabled %}
|
|
|
|
location {{ matrix_mautrix_telegram_public_endpoint }} {
|
|
|
|
{% 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-mautrix-telegram:8080";
|
|
|
|
proxy_pass http://$backend;
|
|
|
|
{% else %}
|
|
|
|
{# Generic configuration for use outside of our container setup #}
|
|
|
|
proxy_pass http://localhost:8080;
|
|
|
|
{% endif %}
|
|
|
|
}
|
|
|
|
{% endif %}
|
|
|
|
|
2017-08-12 12:39:21 +00:00
|
|
|
location /_matrix {
|
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;
|
2018-08-21 10:34:34 +00:00
|
|
|
set $backend "{{ matrix_nginx_proxy_matrix_client_api_addr_with_proxy_container }}";
|
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 #}
|
2018-08-21 10:34:34 +00:00
|
|
|
proxy_pass http://{{ matrix_nginx_proxy_matrix_client_api_addr_sans_proxy_container }};
|
2018-08-08 05:23:36 +00:00
|
|
|
{% endif %}
|
|
|
|
|
2017-08-12 12:39:21 +00:00
|
|
|
proxy_set_header X-Forwarded-For $remote_addr;
|
|
|
|
|
|
|
|
client_body_buffer_size 25M;
|
2018-08-08 06:17:18 +00:00
|
|
|
client_max_body_size {{ matrix_synapse_max_upload_size_mb }}M;
|
2017-08-12 12:39:21 +00:00
|
|
|
proxy_max_temp_file_size 0;
|
|
|
|
}
|
2018-12-23 17:45:03 +00:00
|
|
|
|
|
|
|
location / {
|
2018-12-29 18:11:37 +00:00
|
|
|
rewrite ^/$ /_matrix/static/ last;
|
2018-12-23 17:45:03 +00:00
|
|
|
}
|
2017-08-12 12:39:21 +00:00
|
|
|
}
|