2023-09-02, 08:27 AM
I am running my local instance of jellyfin
under a Cloudflare runner, and when I navigate into
it with a domine name I get the following error
>This client isn't compatible with the media and the server isn't sending a compatible media format.
But when I navigate with the IP and Port all works, any idea what is going wrong?
I am running the server with the following docker configuration
under a Cloudflare runner, and when I navigate into
it with a domine name I get the following error
>This client isn't compatible with the media and the server isn't sending a compatible media format.
But when I navigate with the IP and Port all works, any idea what is going wrong?
I am running the server with the following docker configuration
version: '3.5'
services:
jellyfin:
image: jellyfin/jellyfin:latest
container_name: jellyfin
network_mode: 'host'
volumes:
- /media/nas/.jellyfin/config:/config
- /media/nas/.jellyfin/cache:/cache
- /media/nas:/media
restart: 'unless-stopped'