searx_ynh/conf/nginx.conf

21 lines
517 B
Nginx Configuration File
Raw Normal View History

2014-05-10 11:54:15 +02:00
location PATHTOCHANGE {
if ($scheme = http) {
rewrite ^ https://$server_name$request_uri? permanent;
}
try_files $uri @searx;
}
location @searx {
2014-05-31 12:06:06 +02:00
uwsgi_pass unix:///run/uwsgi/app/searx/socket;
2014-05-10 11:54:15 +02:00
include uwsgi_params;
2014-07-22 23:55:17 +02:00
<<<<<<< HEAD
2014-05-29 14:39:23 +02:00
# Include SSOWAT user panel.
#include conf.d/yunohost_panel.conf.inc;
2014-07-22 23:55:17 +02:00
=======
# Include SSOWAT user panel.
include conf.d/yunohost_panel.conf.inc;
>>>>>>> 90736b2cc32bd424c78355499e1bfb61062af8ca
2014-05-10 11:54:15 +02:00
}
2014-05-10 13:40:10 +02:00