Quantcast
Channel: Kaltura - Latest posts
Viewing all articles
Browse latest Browse all 7410

VOD Nginx Server with ssl offloading

$
0
0

Hi @roger78,

Please see this thread:

You can set up a LB and perform SSL offloading to Nginx but you need to make sure that the delivery_profile.url column is set accordingly to point to the LB over HTTPs.

In addition, when doing SSL offloading from an LB, you should also set the vod_base_url directive, which is explained here:

The configuration in nginx.conf would then look like this:

http {
        vod_base_url https://myserver.mydomain:8443;
        upstream kalapi {
                server myserver.mydomain:8443;
        }
...
}

Viewing all articles
Browse latest Browse all 7410

Trending Articles