Setup Reverse Proxy? - Printable Version +- Jellyfin Forum (https://forum.jellyfin.org) +-- Forum: Support (https://forum.jellyfin.org/f-support) +--- Forum: General Questions (https://forum.jellyfin.org/f-general-questions) +--- Thread: Setup Reverse Proxy? (/t-setup-reverse-proxy) Pages:
1
2
|
RE: Setup Reverse Proxy? - 4r5hw45twh - 2024-04-05 (2024-04-05, 05:18 PM)TheDreadPirate Wrote: That error message indicates you have another process that is listening on port 80 so Caddy isn't able to start. Do you have another web server running already? Yes. OwnTracks. It's a tracking thing I setup for some friends and myself. Is there a way to use both at once or use a different port for it maybe? RE: Setup Reverse Proxy? - TheDreadPirate - 2024-04-05 In your caddyfile you can have it listen on a different port. I use Nginx, so I can't say with confidence how this is done. But I think you append your domain name in the caddy file with the port? So it would be like "domain.tld:8080" or whatever port you want to use. You would need to ensure that this port is opened on Ubuntu's firewall. RE: Setup Reverse Proxy? - 4r5hw45twh - 2024-04-05 (2024-04-05, 05:38 PM)TheDreadPirate Wrote: In your caddyfile you can have it listen on a different port. I use Nginx, so I can't say with confidence how this is done. But I think you append your domain name in the caddy file with the port? So actually, the OwnTracks thing is using Nginx. RE: Setup Reverse Proxy? - TheDreadPirate - 2024-04-05 Interesting. If you want to leave that alone, you can try adding Jellyfin to nginx. https://jellyfin.org/docs/general/networking/nginx/ I need to revalidate this doc because these 3 lines caused issues for me, so I commented them out of my nginx config. Code: location = / { You can change the "listen" line at the top of the doc to listen on a different port since OwnTracks is already listening there. RE: Setup Reverse Proxy? - 4r5hw45twh - 2024-04-05 (2024-04-05, 05:44 PM)TheDreadPirate Wrote: Interesting. If you want to leave that alone, you can try adding Jellyfin to nginx. Hey, thank you. I just wound up deleting the OwnTracks stuff. Works fine now! |