aboutsummaryrefslogtreecommitdiff
path: root/conf/nginx.conf
diff options
context:
space:
mode:
Diffstat (limited to 'conf/nginx.conf')
-rw-r--r--conf/nginx.conf9
1 files changed, 6 insertions, 3 deletions
diff --git a/conf/nginx.conf b/conf/nginx.conf
index 5ce3d7a..0d48dc5 100644
--- a/conf/nginx.conf
+++ b/conf/nginx.conf
@@ -1,3 +1,6 @@
+# upload max size
+client_max_body_size 100M;
+
location / {
if ($scheme = http) {
@@ -6,8 +9,8 @@ location / {
try_files $uri @proxy;
- #--PRIVATE--# Include SSOWAT user panel.
- #--PRIVATE--include conf.d/yunohost_panel.conf.inc;
+ # Include SSOWAT user panel.
+ include conf.d/yunohost_panel.conf.inc;
}
location @proxy {
@@ -37,4 +40,4 @@ location /api/v1/streaming {
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
tcp_nodelay on;
-} \ No newline at end of file
+}