2024-10-11, 02:02 PM
(This post was last modified: 2024-10-11, 02:13 PM by WheelFire. Edited 1 time in total.)
Does anyone know how to set this up with Caddy?
As far as I know I did everything correct (meilisearch and jellysearch can access the jellyfin database and can talk to each other) but when I search for something in Jellyfin, it returns nothing.
If I look at the Caddy logs I see an error that says: "connect: connection refused" and then "aborting with incomplete response" when I close Jellyfin.
This is what my caddyfile looks like now:
also my docker compose file looks like this:
I have Jellyfin running as a container
edit:
also I see an error in Jellysearch's logs where it says: "An unhandled exception was thrown by the application." followed by "...Name or service not known (jellyfin:8096)"
As far as I know I did everything correct (meilisearch and jellysearch can access the jellyfin database and can talk to each other) but when I search for something in Jellyfin, it returns nothing.
If I look at the Caddy logs I see an error that says: "connect: connection refused" and then "aborting with incomplete response" when I close Jellyfin.
This is what my caddyfile looks like now:
Code:
jellyfin.domain.com {
encode gzip
reverse_proxy localhost:8096 {
trusted_proxies private_ranges
}
@search query searchTerm=*
reverse_proxy @search localhost:5000
}
also my docker compose file looks like this:
Code:
services:
jellysearch:
image: domistyle/jellysearch
restart: unless-stopped
volumes:
- /mnt/user/appdata/Jellyfin:/config:ro
ports:
- "5000:5000"
environment:
MEILI_MASTER_KEY: "1234"
INDEX_CRON: "0 0 0/2 ? * * *"
meilisearch:
image: getmeili/meilisearch:v1.9
restart: unless-stopped
volumes:
- meilisearch:/meili_data
ports:
- "7700:7700"
environment:
MEILI_MASTER_KEY: "1234"
volumes:
meilisearch:
config:
I have Jellyfin running as a container
edit:
also I see an error in Jellysearch's logs where it says: "An unhandled exception was thrown by the application." followed by "...Name or service not known (jellyfin:8096)"