Skip to content

Commit

Permalink
Disable client request body size limits. Working with local clients o…
Browse files Browse the repository at this point in the history
…nly, no need to cap at 1m.
  • Loading branch information
jeremy committed Sep 21, 2015
1 parent 6867df2 commit 0f7c102
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions share/powprox/nginx.conf.erb
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ http {
sendfile on;
keepalive_timeout 65;

# No limit on client request body size. Defaults to 1m. Zero disables.
client_max_body_size 0;

# Provide the Pow host root dir as an Nginx variable so per-app nginx
# configs can dynamically set server root directories relative to it.
# We could process per-app config as ERB templates instead, but that'd
Expand Down

0 comments on commit 0f7c102

Please sign in to comment.