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;
}
...
}