file size limits, keep active filters in session

This commit is contained in:
Stefan Hardegger
2025-10-30 13:11:40 +01:00
parent 924ae12b5b
commit a3bc83db8a
7 changed files with 112 additions and 25 deletions

View File

@@ -124,7 +124,7 @@ configs:
}
server {
listen 80;
client_max_body_size 600M;
client_max_body_size 2048M;
location / {
proxy_pass http://frontend;
proxy_http_version 1.1;
@@ -145,8 +145,8 @@ configs:
proxy_connect_timeout 900s;
proxy_send_timeout 900s;
proxy_read_timeout 900s;
# Large upload settings
client_max_body_size 600M;
# Large upload settings (2GB for backups)
client_max_body_size 2048M;
proxy_request_buffering off;
proxy_max_temp_file_size 0;
}