Search Results
7/25/2025, 8:35:54 PM
>>106022508
i hadnt realized cloudflare let you do things for free which is why i am using freedns. But at this point i kind of dont like that cloudflare runs like half of the internet and since freedns working for me i dont see the reason to change
I have somehow made progress, sort of. jellfin.domain.com does not work. But domain.com will bring me to jellyfin and try to have me setup a fresh instance. But if i do domain.com:8096 i get to the normal working jellyfin instance. The compose file running jellyfin is this, there is only a single jellyfin docker instance running and ps shows only one process with the name as well. I'm not sure how this is even possible but it does feel like progress, if only slightly.
version: "3.8"
services:
jellyfin:
image: jellyfin/jellyfin:latest
container_name: jellyfin
networks:
- proxy
ports:
- "8096:8096" # Optional if you want to access it directly
volumes:
- /home/luke/HostedApplications/jellyfin/config:/config
- /home/luke/HostedApplications/jellyfin/cache:/cache
- /mnt/media:/media
restart: unless-stopped
environment:
- TZ=America/Denver
networks:
proxy:
external: true
i hadnt realized cloudflare let you do things for free which is why i am using freedns. But at this point i kind of dont like that cloudflare runs like half of the internet and since freedns working for me i dont see the reason to change
I have somehow made progress, sort of. jellfin.domain.com does not work. But domain.com will bring me to jellyfin and try to have me setup a fresh instance. But if i do domain.com:8096 i get to the normal working jellyfin instance. The compose file running jellyfin is this, there is only a single jellyfin docker instance running and ps shows only one process with the name as well. I'm not sure how this is even possible but it does feel like progress, if only slightly.
version: "3.8"
services:
jellyfin:
image: jellyfin/jellyfin:latest
container_name: jellyfin
networks:
- proxy
ports:
- "8096:8096" # Optional if you want to access it directly
volumes:
- /home/luke/HostedApplications/jellyfin/config:/config
- /home/luke/HostedApplications/jellyfin/cache:/cache
- /mnt/media:/media
restart: unless-stopped
environment:
- TZ=America/Denver
networks:
proxy:
external: true
Page 1