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

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
}