Merge pull request #393 from seanmorley15/fix-nginx-upload

Increase client_max_body_size to 100M in nginx configuration
This commit is contained in:
Sean Morley
2024-12-01 09:53:04 -05:00
committed by GitHub

View File

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