nginx https reverse proxy config for squeezebox server

Max2Play Home Forums Max2Play as Squeezebox (Player / Server) nginx https reverse proxy config for squeezebox server

Viewing 3 posts - 1 through 3 (of 3 total)
  • 2. Februar 2018 at 18:36 #33820

    Is there a config for nginx that I can use as https terminating reverse proxy for squeezebox server?

    6. Februar 2018 at 17:32 #33889

    Hi thefsb,

    Unfortunately, we do not have something like this. Your best bet should be the slimdevices forum as this sort of thing is their expertise.

    6. Februar 2018 at 21:21 #33897

    Something like this would work (now, mind you this isn’t HTTPS, if you REQUIRE this I can probably whip something up for you)

    
        server {
                listen 80;
                server_name yoursqueezeboxIP/whatever if necessary;
    
                        location / {
                                proxy_pass http://yourinternaltld.com/app;
                               #proxy_pass http://www.yourexternaltld.com/app; <-- if you actually are forwarding port 80 to the internet, but I don't recommend this at all.
                        }
            }
    

    Save that as your nginx config and you shouldn’t have to do much more other than fill in the example slots. I would advise running Nginx on a separate VM or dedicated machine.

Viewing 3 posts - 1 through 3 (of 3 total)

You must be logged in to reply to this topic.

Register here