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
#caddy: # broken
searxng:
container_name: searxng
image: docker.io/searxng/searxng:latest
restart: unless-stopped
#networks: # just don't work (tm)
# - searxng
network_mode: "host" # 3142
ports:
#- "127.0.0.1:8080:8080"
- "8080:8080"
#env_file: # that'd be a lot of settings to keep in the root .env
# - searx.d/.env # so it needs to go in a subdir
volumes:
- ./searxng:/etc/searxng:rw
environment:
#- SEARXNG_BASE_URL=https://${SEARXNG_HOSTNAME:-localhost}/ # broken redirect
#- SEARXNG_BASE_URL=https://${SEARXNG_HOSTNAME:-miller.innovanon.com}/ # https doesn't work
- SEARXNG_BASE_URL=http://${SEARXNG_HOSTNAME:-miller.innovanon.com:8080}/
cap_drop:
- ALL
cap_add:
- CHOWN
- SETGID
- SETUID
After further research, I've noticed potential issues:
I'm running pihole (looks like it's married to 80, WEB_PORT don't work?)
I'm running dnscrypt (port 553)
Pihole uses dnscrypt as it's upstream.
I'm running tor (port 9050)
(TODO) dnscrypt needs to use tor as its upstream
I'm running a different redis. See llama-index
(TODO) I'm trying to run the searxng-docker stack.
(TODO) searxng should use tor as its upstream
the LLM uses searxng
there's also a pxe server in the stack (moved its 80 to 82)
In summary, everybody is crowding up 80,81,82,8000,8001,8080,8081.
Progress: searxng is now on 8081; next we need the upstream socks5 proxy
This discussion was converted from issue #250 on July 25, 2024 11:44.
Heading
Bold
Italic
Quote
Code
Link
Numbered list
Unordered list
Task list
Attach files
Mention
Reference
Menu
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
After further research, I've noticed potential issues:
In summary, everybody is crowding up 80,81,82,8000,8001,8080,8081.
Progress: searxng is now on 8081; next we need the upstream socks5 proxy
Beta Was this translation helpful? Give feedback.
All reactions