Skip to content

Commit 33312a4

Browse files
authored
chore: increased nginx config limits for body size (#878)
1 parent f2536c8 commit 33312a4

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

nginx/nginx.conf

+6
Original file line numberDiff line numberDiff line change
@@ -116,6 +116,12 @@ http {
116116

117117
# Ensure proper content type for JSON-RPC
118118
proxy_set_header Content-Type "application/json";
119+
120+
# For handling large file uploads
121+
client_max_body_size 100M;
122+
proxy_read_timeout 300;
123+
proxy_connect_timeout 300;
124+
proxy_send_timeout 300;
119125
}
120126
}
121127
}

0 commit comments

Comments
 (0)