diff --git a/image-recipe/configs/nginx-archipelago.conf b/image-recipe/configs/nginx-archipelago.conf index cf41cf95..06840dd1 100644 --- a/image-recipe/configs/nginx-archipelago.conf +++ b/image-recipe/configs/nginx-archipelago.conf @@ -113,7 +113,7 @@ server { # Peer-to-peer node messaging (receives from other nodes over Tor) location /archipelago/ { limit_req zone=peer burst=20 nodelay; - client_max_body_size 10m; + client_max_body_size 256m; proxy_connect_timeout 30s; proxy_read_timeout 60s; proxy_send_timeout 30s; @@ -198,7 +198,7 @@ server { # Content sharing — peer access over Tor (no auth) location /content { limit_req zone=peer burst=20 nodelay; - client_max_body_size 10m; + client_max_body_size 256m; proxy_connect_timeout 30s; proxy_read_timeout 60s; proxy_send_timeout 30s; @@ -244,7 +244,7 @@ server { # DWN endpoints — peer access over Tor (no auth) location /dwn { limit_req zone=peer burst=20 nodelay; - client_max_body_size 10m; + client_max_body_size 256m; proxy_connect_timeout 30s; proxy_read_timeout 60s; proxy_send_timeout 30s; @@ -922,7 +922,7 @@ server { location /archipelago/ { limit_req zone=peer burst=20 nodelay; - client_max_body_size 10m; + client_max_body_size 256m; proxy_connect_timeout 30s; proxy_read_timeout 60s; proxy_send_timeout 30s; @@ -986,7 +986,7 @@ server { # Content sharing — peer access over Tor (no auth) location /content { limit_req zone=peer burst=20 nodelay; - client_max_body_size 10m; + client_max_body_size 256m; proxy_connect_timeout 30s; proxy_read_timeout 60s; proxy_send_timeout 30s; @@ -1032,7 +1032,7 @@ server { # DWN endpoints — peer access over Tor (no auth) location /dwn { limit_req zone=peer burst=20 nodelay; - client_max_body_size 10m; + client_max_body_size 256m; proxy_connect_timeout 30s; proxy_read_timeout 60s; proxy_send_timeout 30s;