75309

Question:
I am facing a secure connection conflict as some of my videos are hosted on Kaltura (http) while the site is hosted on Heroku (HTTPS). Can you guys/girls advise on how to resolve this conflict?
Answer1:You can make a proxy in your Heroku backend. The steps would be:
<ol><li>The video request is sent through HTTPS protocol to the proxy.</li> <li>The proxy receive the request, parse it, and fetch corresponding video through HTTP from Kaltura.</li> <li>The proxy return video data to browser.</li> </ol>