Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[FEAT] Missing SearXNG config #717

Open
1 task done
isvein opened this issue Nov 17, 2024 · 0 comments
Open
1 task done

[FEAT] Missing SearXNG config #717

isvein opened this issue Nov 17, 2024 · 0 comments
Labels
enhancement New feature or request

Comments

@isvein
Copy link

isvein commented Nov 17, 2024

Is this a new feature request?

  • I have searched the existing issues

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

# 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;

    }

}
@isvein isvein added the enhancement New feature or request label Nov 17, 2024
@LinuxServer-CI LinuxServer-CI moved this to Non-Docker Issues in Issue & PR Tracker Nov 17, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
Status: Non-Docker Issues
Development

No branches or pull requests

1 participant