2019-05-07 19:23:35 +00:00
|
|
|
#jinja2: lstrip_blocks: "True"
|
2019-08-07 09:53:53 +00:00
|
|
|
{% macro render_nginx_status_location_block(addresses) %}
|
|
|
|
{# Empty first line to make indentation prettier. #}
|
|
|
|
|
|
|
|
location /nginx_status {
|
|
|
|
stub_status on;
|
|
|
|
access_log off;
|
|
|
|
{% for address in addresses %}
|
|
|
|
allow {{ address }};
|
|
|
|
{% endfor %}
|
|
|
|
deny all;
|
|
|
|
}
|
|
|
|
{% endmacro %}
|
|
|
|
|
2017-07-31 20:07:30 +00:00
|
|
|
|
2019-12-06 09:53:09 +00:00
|
|
|
{% macro render_vhost_directives() %}
|
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-02-05 09:07:08 +00:00
|
|
|
location /.well-known/matrix {
|
2018-09-17 07:51:46 +00:00
|
|
|
root {{ matrix_static_files_base_path }};
|
2019-02-05 11:06:17 +00:00
|
|
|
{#
|
|
|
|
A somewhat long expires value is used to prevent outages
|
|
|
|
in case this is unreachable due to network failure or
|
|
|
|
due to the base domain's server completely dying.
|
|
|
|
#}
|
|
|
|
expires 4h;
|
2018-09-17 07:51:46 +00:00
|
|
|
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-08-07 09:53:53 +00:00
|
|
|
{% if matrix_nginx_proxy_proxy_matrix_nginx_status_enabled %}
|
|
|
|
{{ render_nginx_status_location_block(matrix_nginx_proxy_proxy_matrix_nginx_status_allowed_addresses) }}
|
|
|
|
{% endif %}
|
|
|
|
|
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-05-08 18:49:51 +00:00
|
|
|
{% if matrix_nginx_proxy_proxy_matrix_3pid_registration_enabled %}
|
|
|
|
location ~ ^/_matrix/client/r0/register/(email|msisdn)/requestToken$ {
|
|
|
|
{% 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_3pid_registration_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_3pid_registration_addr_sans_container }};
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
proxy_set_header Host $host;
|
|
|
|
proxy_set_header X-Forwarded-For $remote_addr;
|
|
|
|
}
|
|
|
|
{% 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
|
|
|
|
2019-02-05 09:07:08 +00:00
|
|
|
{#
|
|
|
|
This handles the Matrix Client API only.
|
|
|
|
The Matrix Federation API is handled by a separate vhost.
|
|
|
|
#}
|
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";
|
2019-03-12 20:15:22 +00:00
|
|
|
auth_basic_user_file /nginx-data/matrix-synapse-metrics-htpasswd;
|
2019-01-30 18:31:50 +00:00
|
|
|
{% endif %}
|
|
|
|
}
|
|
|
|
{% endif %}
|
|
|
|
|
2019-05-29 05:32:06 +00:00
|
|
|
location /_synapse/admin {
|
|
|
|
{% 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_client_api_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_client_api_addr_sans_container }};
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
proxy_set_header Host $host;
|
|
|
|
proxy_set_header X-Forwarded-For $remote_addr;
|
|
|
|
|
|
|
|
client_body_buffer_size 25M;
|
|
|
|
client_max_body_size {{ matrix_nginx_proxy_proxy_matrix_client_api_client_max_body_size_mb }}M;
|
|
|
|
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
|
|
|
}
|
2019-12-06 09:53:09 +00:00
|
|
|
{% endmacro %}
|
|
|
|
|
|
|
|
server {
|
|
|
|
listen {{ 8080 if matrix_nginx_proxy_enabled else 80 }};
|
|
|
|
server_name {{ matrix_nginx_proxy_proxy_matrix_hostname }};
|
|
|
|
|
|
|
|
server_tokens off;
|
|
|
|
root /dev/null;
|
|
|
|
|
|
|
|
{% if matrix_nginx_proxy_https_enabled %}
|
|
|
|
location /.well-known/acme-challenge {
|
|
|
|
{% 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:8080";
|
|
|
|
proxy_pass http://$backend;
|
|
|
|
{% else %}
|
|
|
|
{# Generic configuration for use outside of our container setup #}
|
|
|
|
proxy_pass http://127.0.0.1:{{ matrix_ssl_lets_encrypt_certbot_standalone_http_port }};
|
|
|
|
{% endif %}
|
|
|
|
}
|
|
|
|
|
|
|
|
{% if matrix_nginx_proxy_proxy_matrix_nginx_status_enabled %}
|
|
|
|
{{ render_nginx_status_location_block(matrix_nginx_proxy_proxy_matrix_nginx_status_allowed_addresses) }}
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
location / {
|
|
|
|
return 301 https://$http_host$request_uri;
|
|
|
|
}
|
|
|
|
{% else %}
|
|
|
|
{{ render_vhost_directives() }}
|
|
|
|
{% endif %}
|
2017-08-12 12:39:21 +00:00
|
|
|
}
|
2019-02-05 09:07:08 +00:00
|
|
|
|
2019-12-06 09:53:09 +00:00
|
|
|
{% if matrix_nginx_proxy_https_enabled %}
|
2019-02-05 09:07:08 +00:00
|
|
|
server {
|
2019-12-06 09:53:09 +00:00
|
|
|
listen {{ 8443 if matrix_nginx_proxy_enabled else 443 }} ssl http2;
|
|
|
|
listen [::]:{{ 8443 if matrix_nginx_proxy_enabled else 443 }} ssl http2;
|
2019-02-05 09:07:08 +00:00
|
|
|
|
|
|
|
server_name {{ matrix_nginx_proxy_proxy_matrix_hostname }};
|
|
|
|
|
|
|
|
server_tokens off;
|
|
|
|
root /dev/null;
|
|
|
|
|
2019-12-06 09:53:09 +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;
|
2019-02-05 09:07:08 +00:00
|
|
|
ssl_protocols {{ matrix_nginx_proxy_ssl_protocols }};
|
|
|
|
ssl_prefer_server_ciphers on;
|
|
|
|
ssl_ciphers "EECDH+AESGCM:EDH+AESGCM:AES256+EECDH:AES256+EDH";
|
|
|
|
|
2019-12-06 09:53:09 +00:00
|
|
|
{{ render_vhost_directives() }}
|
|
|
|
}
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
{% if matrix_nginx_proxy_proxy_matrix_federation_api_enabled %}
|
|
|
|
{#
|
|
|
|
This federation vhost is a little special.
|
|
|
|
It serves federation over HTTP or HTTPS, depending on `matrix_nginx_proxy_https_enabled`.
|
|
|
|
#}
|
|
|
|
server {
|
|
|
|
{% if matrix_nginx_proxy_https_enabled %}
|
|
|
|
listen 8448 ssl http2;
|
|
|
|
listen [::]:8448 ssl http2;
|
|
|
|
{% else %}
|
|
|
|
listen 8448;
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
server_name {{ matrix_nginx_proxy_proxy_matrix_hostname }};
|
|
|
|
server_tokens off;
|
|
|
|
|
|
|
|
root /dev/null;
|
|
|
|
|
|
|
|
gzip on;
|
|
|
|
gzip_types text/plain application/json;
|
|
|
|
|
|
|
|
{% if matrix_nginx_proxy_https_enabled %}
|
|
|
|
ssl_certificate {{ matrix_nginx_proxy_proxy_matrix_federation_api_ssl_certificate }};
|
|
|
|
ssl_certificate_key {{ matrix_nginx_proxy_proxy_matrix_federation_api_ssl_certificate_key }};
|
|
|
|
ssl_protocols {{ matrix_nginx_proxy_ssl_protocols }};
|
|
|
|
ssl_prefer_server_ciphers on;
|
|
|
|
ssl_ciphers "EECDH+AESGCM:EDH+AESGCM:AES256+EECDH:AES256+EDH";
|
|
|
|
{% endif %}
|
|
|
|
|
2019-02-05 09:07:08 +00:00
|
|
|
location / {
|
|
|
|
{% 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_federation_api_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_federation_api_addr_sans_container }};
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
proxy_set_header Host $host;
|
|
|
|
proxy_set_header X-Forwarded-For $remote_addr;
|
|
|
|
|
|
|
|
client_body_buffer_size 25M;
|
|
|
|
client_max_body_size {{ matrix_nginx_proxy_proxy_matrix_federation_api_client_max_body_size_mb }}M;
|
|
|
|
proxy_max_temp_file_size 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
{% endif %}
|