searx_ynh/conf/nginx.conf-noroot

16 lines
486 B
Plaintext
Raw Normal View History

2014-05-27 12:01:51 +02:00
location = PATHTOCHANGE { rewrite ^ PATHTOCHANGE/; }
location PATHTOCHANGE {
if ($scheme = http) {
rewrite ^ https://$server_name$request_uri? permanent;
}
try_files $uri @searx; }
location @searx {
uwsgi_param SCRIPT_NAME PATHTOCHANGE;
include uwsgi_params;
uwsgi_modifier1 30;
2014-05-31 12:06:21 +02:00
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-27 12:01:51 +02:00
}