1
0
Fork 0
forked from exozyme/nginx
nginx/synapse.conf

20 lines
548 B
Text
Raw Permalink Normal View History

2021-05-22 18:30:52 +00:00
server {
listen 443 ssl;
listen [::]:443 ssl;
2021-05-22 18:30:52 +00:00
server_name chat.exozy.me;
2021-06-13 20:47:02 +00:00
location / {
2021-05-22 18:30:52 +00:00
proxy_pass http://localhost:8008;
proxy_set_header X-Forwarded-For $remote_addr;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header Host $host;
# 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
2021-07-03 21:32:01 +00:00
client_max_body_size 1G;
2021-12-05 17:47:17 +00:00
# Stop access_log spam
access_log off;
2021-05-22 18:30:52 +00:00
}
}