2024-06-10 23:51:59 +00:00
|
|
|
root /var/www/snikket/snikket_web;
|
2024-05-27 22:00:22 +00:00
|
|
|
|
2024-06-10 23:51:59 +00:00
|
|
|
location / {
|
|
|
|
return 301 https://__DOMAIN__/;
|
|
|
|
}
|
2024-05-27 22:00:22 +00:00
|
|
|
|
2024-06-10 23:51:59 +00:00
|
|
|
location /upload/ {
|
|
|
|
client_max_body_size 104857616; # 100MB + 16 bytes (see Prosody config)
|
|
|
|
proxy_request_buffering off;
|
|
|
|
proxy_http_version 1.1;
|
2024-06-11 23:03:02 +00:00
|
|
|
proxy_pass http://localhost:__PORT_HTTP__;
|
2024-06-10 23:51:59 +00:00
|
|
|
proxy_set_header Host $host;
|
|
|
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
|
|
|
proxy_set_header X-Forwarded-Proto https;
|
2024-05-27 22:00:22 +00:00
|
|
|
}
|