mirror of
https://github.com/YunoHost-Apps/searxng_ynh.git
synced 2024-09-03 20:26:00 +02:00
20 lines
591 B
Nginx Configuration File
20 lines
591 B
Nginx Configuration File
#sub_path_only rewrite ^__PATH__$ __PATH__/ permanent;
|
|
location __PATH__/ {
|
|
|
|
uwsgi_pass unix:///usr/local/__NAME__/run/socket;
|
|
|
|
include uwsgi_params;
|
|
uwsgi_param HTTP_HOST $host;
|
|
uwsgi_param HTTP_CONNECTION $http_connection;
|
|
|
|
# see flaskfix.py
|
|
uwsgi_param HTTP_X_SCHEME $scheme;
|
|
uwsgi_param HTTP_X_SCRIPT_NAME /searxng;
|
|
|
|
# see limiter.py
|
|
uwsgi_param HTTP_X_REAL_IP $remote_addr;
|
|
uwsgi_param HTTP_X_FORWARDED_FOR $proxy_add_x_forwarded_for;
|
|
|
|
# Include SSOWAT user panel.
|
|
include conf.d/yunohost_panel.conf.inc;
|
|
}
|