Non-SSL port (80) being added to Video URL for SSL install

We performed an HTTP install for Kaltura CE, then converted it to an SSL install.

Now, when we try to embed/view an SSL-hosted video, it’s tacking port 80 (non-ssl) onto the video asset:

https://[domain]:80/p/110/sp/11000/serveFlavor/entryId/[ID]/v/12/flavorId/[ID]/forceproxy/true/name/a.mp4

Other parts of the KMC console have correct HTTPS urls, but this, a crucial part, is incorrect.

Here’s our answer file:

TIME_ZONE=“America/New_York"
KALTURA_FULL_VIRTUAL_HOST_NAME=”[DOMAIN]:443"
KALTURA_VIRTUAL_HOST_NAME="[DOMAIN]“
DB1_HOST=”[DOMAIN]"
DB1_PORT="3306"
DB1_PASS="xxxxxxx"
DB1_NAME="kaltura"
DB1_USER="kaltura"
SERVICE_URL=“https://[DOMAIN]:443"
SPHINX_SERVER1=”[IP]“
SPHINX_SERVER2=” “
DWH_HOST=”[DOMAIN]"
DWH_PORT=“3306"
SPHINX_DB_HOST=”[DOMAIN]"
SPHINX_DB_PORT=“3306"
ADMIN_CONSOLE_ADMIN_MAIL=”[EMAIL]"
ADMIN_CONSOLE_PASSWORD=“xxxxxxx"
CDN_HOST=”[DOMAIN]"
KALTURA_VIRTUAL_HOST_PORT=“443"
SUPER_USER=”[USER]"
SUPER_USER_PASSWD="xxxxxx"
ENVIRONMENT_NAME="Kaltura Video Platform"
DWH_PASS=“xxxxxx"
RED5_HOST=”[DOMAIN]"
USER_CONSENT="0"
CONTACT_MAIL=“NO"
VOD_PACKAGER_HOST=”[DOMAIN]"
VOD_PACKAGER_PORT="443"
IP_RANGE=“0.0.0.0-255.255.255.255"
CONFIG_CHOICE=“0"
IS_SSL=“Y"
CRT_FILE=”/etc/httpd/certs/STAR.imgag.com.crt"
KEY_FILE=”/etc/httpd/certs/STAR.imgag.com.key"
CHAIN_FILE=”/etc/httpd/certs/intermediate-entrust-ca.crt"
CA_FILE=“NO_CA”

Any advice???

I am currently hitting exactly the same issue.
I managed to bypass this by removing the port number from KALTURA_FULL_VIRTUAL_HOST_NAME, i.e:

KALTURA_FULL_VIRTUAL_HOST_NAME="[DOMAIN]"

It effectively configures the Apache VirtualHost without the port specified, causing the https on port 80 going through OK.

I know this is not ideal solution and I am still looking for better one.

Any ideas?