• Login
  • Register
  • Login Register
    Login
    Username/Email:
    Password:
    Or login with a social network below
  • Forum
  • Website
  • GitHub
  • Status
  • Translation
  • Features
  • Team
  • Rules
  • Help
  • Feeds
User Links
  • Login
  • Register
  • Login Register
    Login
    Username/Email:
    Password:
    Or login with a social network below

    Useful Links Forum Website GitHub Status Translation Features Team Rules Help Feeds
    Jellyfin Forum Support Troubleshooting SyncPlay Fails

     
    • 0 Vote(s) - 0 Average

    SyncPlay Fails

    SyncPlay Fails with wss:// Behind Correctly Configured Nginx - Diagnostic Proof Included
    niels
    Offline

    Core Team

    Posts: 272
    Threads: 4
    Joined: 2023 Jun
    Reputation: 16
    Country:Netherlands
    #6
    2025-06-30, 06:21 AM
    Try removing the location block for the /jellyfin/socket route as you've already configured the WebSocket support for all routes. If it then still doesn't work I merged your config with mine so try and see if that solves it.

    Code:
    location /jellyfin {
        # This proxy pass to the HTTP port is correct based on our tests.
        proxy_pass http://127.0.0.1:8096;
        proxy_set_header Host $host;

        # These headers tell Jellyfin it is behind a proxy.
        proxy_set_header X-Real-IP $remote_addr;
        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
        proxy_set_header X-Forwarded-Proto $scheme;
        proxy_set_header X-Forwarded-Protocol $scheme;
        proxy_set_header X-Forwarded-Host $http_host;
        proxy_set_header X-Forwarded-Ssl on;

        # WebSocket headers (also included here for general compatibility)
        proxy_set_header Upgrade $http_upgrade;
        proxy_set_header Connection "upgrade";

        proxy_redirect off;
        proxy_buffering off;
        proxy_cache off;
    }
    [Image: GitHub%20Sponsors-grey?logo=github] [Image: Buy%20Me%20a%20Coffee-grey?logo=buymeacoffee]
    « Next Oldest | Next Newest »

    Users browsing this thread: 1 Guest(s)


    Messages In This Thread
    SyncPlay Fails - by xtendo - 2025-06-28, 12:00 PM
    RE: SyncPlay Fails - by niels - 2025-06-29, 06:17 AM
    RE: SyncPlay Fails - by xtendo - 2025-06-29, 09:59 AM
    RE: SyncPlay Fails - by niels - 2025-06-29, 10:07 AM
    RE: SyncPlay Fails - by xtendo - 2025-06-29, 11:27 AM
    RE: SyncPlay Fails - by niels - 2025-06-30, 06:21 AM
    RE: SyncPlay Fails - by xtendo - 2025-06-30, 11:57 AM
    RE: SyncPlay Fails - by niels - 2025-06-30, 12:13 PM
    RE: SyncPlay Fails - by xtendo - 2025-06-30, 02:30 PM

    • View a Printable Version
    • Subscribe to this thread
    Forum Jump:

    Home · Team · Help · Contact
    © Designed by D&D - Powered by MyBB
    L


    Jellyfin

    The Free Software Media System

    Linear Mode
    Threaded Mode