You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
127 lines
4.4 KiB
127 lines
4.4 KiB
7 years ago
|
server {
|
||
6 years ago
|
listen {{ 8080 if matrix_nginx_proxy_enabled else 80 }};
|
||
6 years ago
|
server_name {{ matrix_nginx_proxy_proxy_matrix_hostname }};
|
||
7 years ago
|
|
||
|
server_tokens off;
|
||
|
|
||
|
location /.well-known/acme-challenge {
|
||
6 years ago
|
{% if matrix_nginx_proxy_enabled %}
|
||
|
{# Use the embedded DNS resolver in Docker containers to discover the service #}
|
||
|
resolver 127.0.0.11 valid=5s;
|
||
6 years ago
|
set $backend "matrix-certbot:8080";
|
||
6 years ago
|
proxy_pass http://$backend;
|
||
|
{% else %}
|
||
|
{# Generic configuration for use outside of our container setup #}
|
||
6 years ago
|
proxy_pass http://localhost:{{ matrix_ssl_lets_encrypt_certbot_standalone_http_port }};
|
||
7 years ago
|
{% endif %}
|
||
7 years ago
|
}
|
||
|
|
||
|
location / {
|
||
|
return 301 https://$http_host$request_uri;
|
||
|
}
|
||
|
}
|
||
|
|
||
7 years ago
|
server {
|
||
6 years ago
|
listen {{ 8443 if matrix_nginx_proxy_enabled else 443 }} ssl http2;
|
||
|
listen [::]:{{ 8443 if matrix_nginx_proxy_enabled else 443 }} ssl http2;
|
||
7 years ago
|
|
||
6 years ago
|
server_name {{ matrix_nginx_proxy_proxy_matrix_hostname }};
|
||
7 years ago
|
|
||
|
server_tokens off;
|
||
|
root /dev/null;
|
||
|
|
||
6 years ago
|
gzip on;
|
||
6 years ago
|
gzip_types text/plain application/json;
|
||
6 years ago
|
|
||
6 years ago
|
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;
|
||
6 years ago
|
ssl_protocols {{ matrix_nginx_proxy_ssl_protocols }};
|
||
7 years ago
|
ssl_prefer_server_ciphers on;
|
||
|
ssl_ciphers "EECDH+AESGCM:EDH+AESGCM:AES256+EECDH:AES256+EDH";
|
||
|
|
||
6 years ago
|
location /.well-known/matrix/client {
|
||
|
root {{ matrix_static_files_base_path }};
|
||
|
expires 1m;
|
||
|
default_type application/json;
|
||
6 years ago
|
add_header Access-Control-Allow-Origin *;
|
||
6 years ago
|
}
|
||
|
|
||
6 years ago
|
{% if matrix_nginx_proxy_proxy_matrix_corporal_api_enabled %}
|
||
6 years ago
|
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;
|
||
6 years ago
|
set $backend "{{ matrix_nginx_proxy_proxy_matrix_corporal_api_addr_with_container }}";
|
||
6 years ago
|
proxy_pass http://$backend;
|
||
|
{% else %}
|
||
|
{# Generic configuration for use outside of our container setup #}
|
||
6 years ago
|
proxy_pass http://{{ matrix_nginx_proxy_proxy_matrix_corporal_api_addr_sans_container }};
|
||
6 years ago
|
{% endif %}
|
||
6 years ago
|
|
||
|
proxy_set_header Host $host;
|
||
|
proxy_set_header X-Forwarded-For $remote_addr;
|
||
6 years ago
|
}
|
||
|
{% endif %}
|
||
|
|
||
6 years ago
|
{% if matrix_nginx_proxy_proxy_matrix_identity_api_enabled %}
|
||
6 years ago
|
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;
|
||
6 years ago
|
set $backend "{{ matrix_nginx_proxy_proxy_matrix_identity_api_addr_with_container }}";
|
||
6 years ago
|
proxy_pass http://$backend;
|
||
|
{% else %}
|
||
|
{# Generic configuration for use outside of our container setup #}
|
||
6 years ago
|
proxy_pass http://{{ matrix_nginx_proxy_proxy_matrix_identity_api_addr_sans_container }};
|
||
6 years ago
|
{% endif %}
|
||
6 years ago
|
|
||
|
proxy_set_header Host $host;
|
||
|
proxy_set_header X-Forwarded-For $remote_addr;
|
||
6 years ago
|
}
|
||
|
{% endif %}
|
||
|
|
||
6 years ago
|
{% 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 %}
|
||
6 years ago
|
|
||
|
proxy_set_header Host $host;
|
||
|
proxy_set_header X-Forwarded-For $remote_addr;
|
||
6 years ago
|
}
|
||
|
{% endif %}
|
||
|
|
||
6 years ago
|
{% for configuration_block in matrix_nginx_proxy_proxy_matrix_additional_server_configuration_blocks %}
|
||
|
{{- configuration_block }}
|
||
|
{% endfor %}
|
||
6 years ago
|
|
||
7 years ago
|
location /_matrix {
|
||
6 years ago
|
{% if matrix_nginx_proxy_enabled %}
|
||
|
{# Use the embedded DNS resolver in Docker containers to discover the service #}
|
||
|
resolver 127.0.0.11 valid=5s;
|
||
6 years ago
|
set $backend "{{ matrix_nginx_proxy_proxy_matrix_client_api_addr_with_container }}";
|
||
6 years ago
|
proxy_pass http://$backend;
|
||
|
{% else %}
|
||
6 years ago
|
{# Generic configuration for use outside of our container setup #}
|
||
6 years ago
|
proxy_pass http://{{ matrix_nginx_proxy_proxy_matrix_client_api_addr_sans_container }};
|
||
6 years ago
|
{% endif %}
|
||
|
|
||
6 years ago
|
proxy_set_header Host $host;
|
||
7 years ago
|
proxy_set_header X-Forwarded-For $remote_addr;
|
||
|
|
||
|
client_body_buffer_size 25M;
|
||
6 years ago
|
client_max_body_size {{ matrix_nginx_proxy_proxy_matrix_client_api_client_max_body_size }};
|
||
7 years ago
|
proxy_max_temp_file_size 0;
|
||
|
}
|
||
6 years ago
|
|
||
|
location / {
|
||
6 years ago
|
rewrite ^/$ /_matrix/static/ last;
|
||
6 years ago
|
}
|
||
7 years ago
|
}
|