23 lines
750 B
Text
23 lines
750 B
Text
{{ ansible_managed | comment }}
|
|
|
|
server {
|
|
listen 443 ssl http2;
|
|
listen [::]:443 ssl http2;
|
|
|
|
# For the federation port
|
|
listen 8448 ssl http2 default_server;
|
|
listen [::]:8448 ssl http2 default_server;
|
|
|
|
server_name {{ matrix_local_server_name }};
|
|
|
|
ssl_certificate /var/certificates/{{ matrix_local_server_name }}_cert.pem;
|
|
ssl_certificate_key /var/certificates/{{ matrix_local_server_name }}_privkey.pem;
|
|
|
|
location ~* ^(\/_matrix|\/_synapse\/client) {
|
|
proxy_pass http://localhost:8008;
|
|
|
|
# Nginx by default only allows file uploads up to 1M in size
|
|
# Increase client_max_body_size to match max_upload_size defined in homeserver.yaml
|
|
client_max_body_size {{ matrix_max_upload_size }};
|
|
}
|
|
}
|