Increase client_max_body_size to 100M in nginx configuration

This commit is contained in:
Sean Morley
2024-12-01 09:52:34 -05:00
parent 1f4a02467b
commit 6ba047d2a5

View File

@@ -10,6 +10,8 @@ http {
sendfile on;
keepalive_timeout 65;
client_max_body_size 100M;
upstream django {
server server:8000; # Use the internal Docker networking
}