fix: disable nginx body size check (#7803)

* fix: increase nginx client_max_body_size

* fix: entirely disable nginx body size check
This commit is contained in:
Jennifer Richards 2024-08-07 12:37:26 -03:00 committed by GitHub
parent 4b912d55a5
commit f921cdba5d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -23,5 +23,6 @@ server {
proxy_set_header X-Forwarded-For $${keepempty}proxy_add_x_forwarded_for;
proxy_set_header X-Real-IP $${keepempty}remote_addr;
proxy_pass http://localhost:8000;
client_max_body_size 0; # disable size check
}
}