Wowza Community

HLS through both http and https in same application?

Hello,

Is there a way to serve HLS chunklists some with http and some with https depending on the client doing the requests?

Currently we just changed from HTTP to HTTPS by adding the below configuration to our Edge’s Application.xml, but i couldn’t find something relevant to serving both (not even programatically).

<Property>
     <Name>cupertinoPlaylistHostProtocol</Name>
     <Value>https://</Value>
</Property>

Thanks!

Later edit:

I saw a similar post from 2012 with negative answer :frowning:

You could setup two HostPorts, one with SSL (port 443) and the other without (port 80). Then, you could detect the user agent in your web application and depending on it (“the client”), create an appropriate stream url, either with or without ssl. The same application can be used for both.

Is this something that could work for you?