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_matrix_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 #}
|
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 {
|
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-16 16:05:48 +00:00
|
|
|
server_name {{ matrix_nginx_proxy_proxy_matrix_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;
|
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_matrix_hostname }}/fullchain.pem;
|
|
|
|
ssl_certificate_key {{ matrix_ssl_config_dir_path }}/live/{{ matrix_nginx_proxy_proxy_matrix_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";
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2019-01-17 11:32:46 +00:00
|
|
|
{% if matrix_nginx_proxy_proxy_matrix_corporal_api_enabled %}
|
2018-08-21 10:34:34 +00:00
|
|
|
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;
|
2019-01-17 11:32:46 +00:00
|
|
|
set $backend "{{ matrix_nginx_proxy_proxy_matrix_corporal_api_addr_with_container }}";
|
2018-08-21 10:34:34 +00:00
|
|
|
proxy_pass http://$backend;
|
|
|
|
{% else %}
|
|
|
|
{# Generic configuration for use outside of our container setup #}
|
2019-01-17 11:32:46 +00:00
|
|
|
proxy_pass http://{{ matrix_nginx_proxy_proxy_matrix_corporal_api_addr_sans_container }};
|
2018-08-21 10:34:34 +00:00
|
|
|
{% endif %}
|
2019-01-17 14:25:08 +00:00
|
|
|
|
|
|
|
proxy_set_header Host $host;
|
|
|
|
proxy_set_header X-Forwarded-For $remote_addr;
|
2018-08-21 10:34:34 +00:00
|
|
|
}
|
|
|
|
{% endif %}
|
|
|
|
|
2019-01-17 11:32:46 +00:00
|
|
|
{% if matrix_nginx_proxy_proxy_matrix_identity_api_enabled %}
|
2018-08-15 07:23:22 +00:00
|
|
|
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;
|
2019-01-17 11:32:46 +00:00
|
|
|
set $backend "{{ matrix_nginx_proxy_proxy_matrix_identity_api_addr_with_container }}";
|
2018-08-15 07:23:22 +00:00
|
|
|
proxy_pass http://$backend;
|
|
|
|
{% else %}
|
|
|
|
{# Generic configuration for use outside of our container setup #}
|
2019-01-17 11:32:46 +00:00
|
|
|
proxy_pass http://{{ matrix_nginx_proxy_proxy_matrix_identity_api_addr_sans_container }};
|
2018-08-15 07:23:22 +00:00
|
|
|
{% endif %}
|
2019-01-17 14:21:04 +00:00
|
|
|
|
|
|
|
proxy_set_header Host $host;
|
|
|
|
proxy_set_header X-Forwarded-For $remote_addr;
|
2018-08-15 07:23:22 +00:00
|
|
|
}
|
|
|
|
{% endif %}
|
|
|
|
|
2019-01-17 13:55:23 +00:00
|
|
|
{% if matrix_nginx_proxy_proxy_matrix_user_directory_search_enabled %}
|
|
|
|
location /_matrix/client/r0/user_directory/search {
|
|
|
|
{% 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_nginx_proxy_proxy_matrix_user_directory_search_addr_with_container }}";
|
|
|
|
proxy_pass http://$backend;
|
|
|
|
{% else %}
|
|
|
|
{# Generic configuration for use outside of our container setup #}
|
|
|
|
proxy_pass http://{{ matrix_nginx_proxy_proxy_matrix_user_directory_search_addr_sans_container }};
|
|
|
|
{% endif %}
|
2019-01-17 14:21:04 +00:00
|
|
|
|
|
|
|
proxy_set_header Host $host;
|
|
|
|
proxy_set_header X-Forwarded-For $remote_addr;
|
2019-01-17 13:55:23 +00:00
|
|
|
}
|
|
|
|
{% endif %}
|
|
|
|
|
2019-01-17 11:32:46 +00:00
|
|
|
{% for configuration_block in matrix_nginx_proxy_proxy_matrix_additional_server_configuration_blocks %}
|
|
|
|
{{- configuration_block }}
|
|
|
|
{% endfor %}
|
2018-10-21 21:20:37 +00:00
|
|
|
|
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;
|
2019-01-17 11:32:46 +00:00
|
|
|
set $backend "{{ matrix_nginx_proxy_proxy_matrix_client_api_addr_with_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 #}
|
2019-01-17 11:32:46 +00:00
|
|
|
proxy_pass http://{{ matrix_nginx_proxy_proxy_matrix_client_api_addr_sans_container }};
|
2018-08-08 05:23:36 +00:00
|
|
|
{% endif %}
|
|
|
|
|
2019-01-17 14:25:08 +00:00
|
|
|
proxy_set_header Host $host;
|
2017-08-12 12:39:21 +00:00
|
|
|
proxy_set_header X-Forwarded-For $remote_addr;
|
|
|
|
|
|
|
|
client_body_buffer_size 25M;
|
2019-01-29 16:52:02 +00:00
|
|
|
client_max_body_size {{ matrix_nginx_proxy_proxy_matrix_client_api_client_max_body_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
|
|
|
|
2019-01-30 18:31:50 +00:00
|
|
|
{% if matrix_nginx_proxy_proxy_synapse_metrics %}
|
|
|
|
location /_synapse/metrics {
|
|
|
|
{% 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_nginx_proxy_proxy_synapse_metrics_addr_with_container }}";
|
|
|
|
proxy_pass http://$backend;
|
|
|
|
{% else %}
|
|
|
|
{# Generic configuration for use outside of our container setup #}
|
|
|
|
proxy_pass http://{{ matrix_nginx_proxy_proxy_synapse_metrics_addr_sans_container }};
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
proxy_set_header Host $host;
|
|
|
|
proxy_set_header X-Forwarded-For $remote_addr;
|
|
|
|
|
|
|
|
{% if matrix_nginx_proxy_proxy_synapse_metrics_basic_auth_enabled %}
|
|
|
|
auth_basic "protected";
|
|
|
|
auth_basic_user_file .matrix-synapse-metrics-htpasswd;
|
|
|
|
{% endif %}
|
|
|
|
}
|
|
|
|
{% endif %}
|
|
|
|
|
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
|
|
|
}
|