2022-11-23 10:08:54 +01:00
|
|
|
#sub_path_only rewrite ^__PATH__$ __PATH__/ permanent;
|
|
|
|
location __PATH__/ {
|
|
|
|
|
2022-11-24 15:53:44 +01:00
|
|
|
uwsgi_pass unix:///var/run/__NAME__/app.socket;
|
2022-11-24 00:46:00 +01:00
|
|
|
|
2022-11-23 12:46:39 +01:00
|
|
|
include uwsgi_params;
|
2022-11-24 00:46:00 +01:00
|
|
|
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;
|
2022-11-23 12:46:39 +01:00
|
|
|
|
2022-11-24 00:46:00 +01:00
|
|
|
# see limiter.py
|
|
|
|
uwsgi_param HTTP_X_REAL_IP $remote_addr;
|
|
|
|
uwsgi_param HTTP_X_FORWARDED_FOR $proxy_add_x_forwarded_for;
|
2022-11-23 10:08:54 +01:00
|
|
|
|
|
|
|
# Include SSOWAT user panel.
|
|
|
|
include conf.d/yunohost_panel.conf.inc;
|
|
|
|
}
|