2021-05-22 18:30:52 +00:00
|
|
|
server {
|
|
|
|
listen 443 ssl http2;
|
|
|
|
listen [::]:443 ssl http2;
|
|
|
|
|
|
|
|
# For the federation port
|
|
|
|
listen 8448 http2 ssl default_server;
|
|
|
|
listen [::]:8448 http2 ssl default_server;
|
|
|
|
|
|
|
|
server_name chat.exozy.me;
|
|
|
|
|
|
|
|
ssl_certificate /etc/letsencrypt/live/exozy.me/fullchain.pem;
|
|
|
|
ssl_certificate_key /etc/letsencrypt/live/exozy.me/privkey.pem;
|
|
|
|
|
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-05-22 18:30:52 +00:00
|
|
|
}
|
|
|
|
}
|