commit: f68fa930ea448f5e94057160cfdcc78fec4aba11
parent: 007ab330e6ffb1e07995d4e306473d457043e2eb
Author: Daniel Hunsaker <danhunsaker@gmail.com>
Date: Sat, 8 Jul 2017 18:52:36 -0600
[nanobox] Allow Full-size Uploads (#4123)
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.
Diffstat:
3 files changed, 10 insertions(+), 6 deletions(-)
diff --git a/nanobox/nginx-local.conf b/nanobox/nginx-local.conf
@@ -27,8 +27,8 @@ http {
}
map $http_upgrade $connection_upgrade {
- default upgrade;
- '' close;
+ default upgrade;
+ '' close;
}
# Configuration for Nginx
@@ -38,6 +38,8 @@ http {
root /app/public;
+ client_max_body_size 8M;
+
location / {
try_files $uri @rails;
}
diff --git a/nanobox/nginx-stream.conf.erb b/nanobox/nginx-stream.conf.erb
@@ -22,8 +22,8 @@ http {
}
map $http_upgrade $connection_upgrade {
- default upgrade;
- '' close;
+ default upgrade;
+ '' close;
}
# Configuration for Nginx
diff --git a/nanobox/nginx-web.conf.erb b/nanobox/nginx-web.conf.erb
@@ -22,8 +22,8 @@ http {
}
map $http_upgrade $connection_upgrade {
- default upgrade;
- '' close;
+ default upgrade;
+ '' close;
}
# Configuration for Nginx
@@ -36,6 +36,8 @@ http {
root /app/public;
+ client_max_body_size 8M;
+
location / {
try_files $uri @rails;
}