diff --git a/conf/nginx.conf b/conf/nginx.conf index 303ba80..7f6b78d 100644 --- a/conf/nginx.conf +++ b/conf/nginx.conf @@ -5,6 +5,9 @@ location __PATH__ { rewrite ^ https://$server_name$request_uri? permanent; } try_files $uri @searx; + + # Include SSOWAT user panel. + include conf.d/yunohost_panel.conf.inc; } location @searx { @@ -12,7 +15,4 @@ location @searx { include uwsgi_params; uwsgi_modifier1 30; uwsgi_pass unix:///run/uwsgi/app/searx/socket; - - # Include SSOWAT user panel. - include conf.d/yunohost_panel.conf.inc; }