searx_ynh/conf/nginx.conf

19 lines
413 B
Nginx Configuration File
Raw Permalink Normal View History

#noroot location = __PATH__ { rewrite ^ __PATH__/; }
location __PATH__ {
if ($scheme = http) {
2018-06-07 21:32:02 +02:00
# rewrite ^ https://$server_name$request_uri? permanent;
}
try_files $uri @searx;
2014-05-10 11:54:15 +02:00
}
location @searx {
uwsgi_param SCRIPT_NAME '__PATH_NO_ROOT__';
include uwsgi_params;
uwsgi_modifier1 30;
uwsgi_pass unix:///run/uwsgi/app/searx/socket;
2014-05-10 11:54:15 +02:00
}
2017-05-23 19:00:06 +02:00
# Include SSOWAT user panel.
2018-06-07 21:32:02 +02:00
#include conf.d/yunohost_panel.conf.inc;