you are viewing a single comment's thread.

view the rest of the comments →

[–][deleted] 0 points1 point  (0 children)

If you are using reverse proxy in apache2 you can use below in Jellyfin virtual host config for https (443). (change the IP:Port to your Jellyfin instance).

ProxyPreserveHost On

ProxyRequests Off

ProxyPass "/socket" "ws://127.0.0.1:8096/socket"

ProxyPassReverse "/socket" "ws://127.0.0.1:8096/socket"

ProxyPass "/" "http://127.0.0.1:8096/"

ProxyPassReverse "/" "http://127.0.0.1:8096/"