2025-03-20, 09:40 PM
Not sure if this is related, it looks like you didn't set the correct password for your cert. But you should avoid using the built in HTTPS functionality in jellyfin anyway. Disable https. If you need https for remote access, I'd recommend using a reverse proxy like Caddy or Nginx to handle remote connections.
Get rid of these options in your compose. They are not needed when using host networking.
Try binding Jellyfin to 192.168.2.2. Dashboard > Networking > Bind to local network address. I'm assuming that is a static IP.
Get rid of these options in your compose. They are not needed when using host networking.
Code:
ports:
- "8096:8096/tcp" # http
- "8920:8920/tcp" # https
- "1900:1900/udp" # service auto-discovery
- "7359:7359/udp" # auto-discovery
Try binding Jellyfin to 192.168.2.2. Dashboard > Networking > Bind to local network address. I'm assuming that is a static IP.