1
0
Fork 0
mirror of https://github.com/seanmorley15/AdventureLog.git synced 2025-08-05 05:05:17 +02:00

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
commit 0a2b172405
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

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
} }