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

@@ -13,7 +13,7 @@ http {
server {
listen 80;
client_max_body_size 600M;
client_max_body_size 2048M; # 2GB for large backup uploads
# Frontend routes
location / {
@@ -55,8 +55,8 @@ http {
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;
}