>>>>> Michael Herger <[email protected]>:

>> Referer: https://www.mysqueezebox.com/player/playerControl
> The non-working was

> Referer: https://mysqueezebox.com/player/playerControl

> Spot the difference ;-).

Thanks! I changed the URL to www.mysqueezebox.com on all of the problem
browsers and now all of my android devices are able to stream music from
tidal. :-)

> That's an excellent catch! I'll have to look into this.

I saw you're using nginx, maybe something like this? (NB! Untested!)

server {
        listen 80;
        listen [::]:80;
        listen 443 ssl;
        listen [::]:443 ssl;

        server mysqueezebox.com;

        location / {
                return 301 https://www.mysqueezebox.com$uri;
        }
}

(the intent is to route both HTTP and HTTPS requests to mysqueezebox.com
to HTTPS requests to www.mysqueezebox.com)

_______________________________________________
squeezenetwork mailing list
[email protected]
http://lists.slimdevices.com/mailman/listinfo/squeezenetwork

Reply via email to