Open Rathna-K opened 2 years ago
LLHLS protocol requires HTTP2, which in turn requires HTTPS.
In order to get the web-ui (port 5000) and LLHLS (port 8888) over a single port (port 443), I configure my reverse proxy forward to two different locations. In this case I use /hls/
for the LLHLS feed.
WB_HLS_URL=https://my_external_domain_name/hls/
In nginx it looks something like this (very stripped down):
location ~ ^/hls(?:/(.*))?$ {
proxy_pass https://192.168.x.x:8888/$1;
}
location / {
proxy_pass http://192.168.x.x:5000$request_uri;
}