searx_ynh/conf/nginx.conf

19 lines
413 B
Nginx Configuration File
Raw Normal View History

#noroot location = __PATH__ { rewrite ^ __PATH__/; }
location __PATH__ {
if ($scheme = http) {
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-07-21 23:44:12 +02:00
# Include SSOWAT user panel.
include conf.d/yunohost_panel.conf.inc;
2014-05-10 11:54:15 +02:00
}