[nanobox] Allow Full-size Uploads ()

The Nginx configurations used by Nanobox previously neglected to increase the default upload size limit. This PR bumps that value up to the current Mastodon limit of 8MiB.
This commit is contained in:
Daniel Hunsaker
2017-07-08 18:52:36 -06:00
committed by Eugen Rochko
parent 007ab330e6
commit f68fa930ea
3 changed files with 10 additions and 6 deletions

@ -38,6 +38,8 @@ http {
root /app/public; root /app/public;
client_max_body_size 8M;
location / { location / {
try_files $uri @rails; try_files $uri @rails;
} }

@ -36,6 +36,8 @@ http {
root /app/public; root /app/public;
client_max_body_size 8M;
location / { location / {
try_files $uri @rails; try_files $uri @rails;
} }