mirror of
https://github.com/YunoHost-Apps/searx_ynh.git
synced 2024-09-03 20:16:30 +02:00
ba0ca37ed9
2 PR at the same time, and we have duplicated this include. To works fine, this include need to be at the end of the file. - [ ] Complete test - [ ] Upgrade previous version - [ ] Code review - [ ] Approval (LGTM) - [ ] Approval (LGTM) - [ ] CI succeeded [Minor decision](https://github.com/YunoHost/project-organization/blob/master/yunohost_project_organization.md#minor-decision), close on 13 of july, or 9 of july.
18 lines
411 B
Nginx Configuration File
18 lines
411 B
Nginx Configuration File
#noroot location = __PATH__ { rewrite ^ __PATH__/; }
|
|
|
|
location __PATH__ {
|
|
if ($scheme = http) {
|
|
rewrite ^ https://$server_name$request_uri? permanent;
|
|
}
|
|
try_files $uri @searx;
|
|
}
|
|
|
|
location @searx {
|
|
uwsgi_param SCRIPT_NAME '__PATH_NO_ROOT__';
|
|
include uwsgi_params;
|
|
uwsgi_modifier1 30;
|
|
uwsgi_pass unix:///run/uwsgi/app/searx/socket;
|
|
}
|
|
|
|
# Include SSOWAT user panel.
|
|
include conf.d/yunohost_panel.conf.inc;
|