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?
我正面临一个安全的连接冲突,因为我的一些视频托管在Kaltura(http)上,而网站是在Heroku(HTTPS)上托管的。你们/女孩可以就如何解决这场冲突提出建议吗?
1 个解决方案
#1
0
You can make a proxy in your Heroku backend. The steps would be:
您可以在Heroku后端创建代理。步骤将是:
- The video request is sent through HTTPS protocol to the proxy.
- The proxy receive the request, parse it, and fetch corresponding video through HTTP from Kaltura.
- The proxy return video data to browser.
视频请求通过HTTPS协议发送到代理。
代理接收请求,解析它,并通过HTTP从Kaltura获取相应的视频。
代理将视频数据返回给浏览器。
#1
0
You can make a proxy in your Heroku backend. The steps would be:
您可以在Heroku后端创建代理。步骤将是:
- The video request is sent through HTTPS protocol to the proxy.
- The proxy receive the request, parse it, and fetch corresponding video through HTTP from Kaltura.
- The proxy return video data to browser.
视频请求通过HTTPS协议发送到代理。
代理接收请求,解析它,并通过HTTP从Kaltura获取相应的视频。
代理将视频数据返回给浏览器。