lucee / lucee-dockerfiles

Official Lucee Dockerfiles for Docker Hub build images
https://hub.docker.com/u/lucee/
MIT License
86 stars 50 forks source link

set client_max_body_size 10m; as the nginx default #14

Closed modius closed 6 years ago

modius commented 8 years ago
client_max_body_size 10m;

Need a reasonable default as this determines the maximum form post size and blocks any media upload above 1m by default. Can be easily overridden in the app project.

justincarter commented 6 years ago

I think we can leave this as-is, and apps which need to accept large payloads can open up the max body size in their own nginx.conf configuration (they may be likely to need to change more than this default as well, such as request and proxy timeouts).