From 1b94a55f30f15ad8dd5b58e3c0746823f61216d6 Mon Sep 17 00:00:00 2001 From: ericgaspar Date: Sat, 30 Jan 2021 13:54:15 +0100 Subject: [PATCH] Update nginx.conf --- conf/nginx.conf | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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; -}