diff --git a/conf/nginx.conf b/conf/nginx.conf index 2d71e1c..29b705c 100644 --- a/conf/nginx.conf +++ b/conf/nginx.conf @@ -3,4 +3,5 @@ location PATHTOCHANGE/ { proxy_pass http://localhost:YUNOPORT/; proxy_set_header Host $host; proxy_buffering off; + include conf.d/yunohost_panel.conf.inc; } diff --git a/conf/nginx.conf-nosub b/conf/nginx.conf-nosub index 2f88c07..cbdccdc 100644 --- a/conf/nginx.conf-nosub +++ b/conf/nginx.conf-nosub @@ -2,5 +2,6 @@ location / { proxy_pass http://localhost:YUNOPORT/; proxy_set_header Host $host; # be careful, this line doesn't override any proxy_buffering on set in a conf.d/file.conf - proxy_buffering off; + proxy_buffering off; + include conf.d/yunohost_panel.conf.inc; }