diff --git a/conf/nginx.conf b/conf/nginx.conf index b61db04..e76acd3 100644 --- a/conf/nginx.conf +++ b/conf/nginx.conf @@ -3,7 +3,7 @@ location / { if ($scheme = http) { rewrite ^ https://$server_name$request_uri? permanent; } - + proxy_pass http://localhost:__PORT__; proxy_set_header Host $host; proxy_redirect http:// https://; @@ -14,4 +14,5 @@ location / { # Include SSOWAT user panel. include conf.d/yunohost_panel.conf.inc; + client_max_body_size 1G; }