You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Adding config file for SearXNG
The config below works for me, looks like nothing else is needed.
Tested with SearXNG container from Unraid app-store
Reason for change
Missing
Proposed code change
# make sure that your searXNG container is named searxng
# make sure that your dns has a cname set for search
server {
listen 443 ssl;
listen [::]:443 ssl;
server_name search.*;
include /config/nginx/ssl.conf;
location / {
include /config/nginx/proxy.conf;
include /config/nginx/resolver.conf;
set $upstream_app 192.168.40.17;
set $upstream_port 8080;
set $upstream_proto http;
proxy_pass $upstream_proto://$upstream_app:$upstream_port;
}
}
The text was updated successfully, but these errors were encountered:
Is this a new feature request?
Wanted change
Adding config file for SearXNG
The config below works for me, looks like nothing else is needed.
Tested with SearXNG container from Unraid app-store
Reason for change
Missing
Proposed code change
The text was updated successfully, but these errors were encountered: