diff --git a/conf/nginx.conf b/conf/nginx.conf index 7d452ba..a06ccc7 100644 --- a/conf/nginx.conf +++ b/conf/nginx.conf @@ -11,6 +11,10 @@ location __PATH__/ { rewrite ^ https://$server_name$request_uri? permanent; } + # Include SSOWAT user panel. + include conf.d/yunohost_panel.conf.inc; +} + location = __PATH__/http-bind { proxy_pass http://localhost:5290/http-bind; proxy_redirect off; @@ -23,7 +27,3 @@ location __PATH__/ { proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection “upgrade”; } - - # Include SSOWAT user panel. - include conf.d/yunohost_panel.conf.inc; -}