我们可以通过https协议允许不安全的websocket(ws://)吗?

时间:2013-11-25 07:04:51

标签: apache https websocket internet-explorer-10

我已经尝试使用某些标志配置在firefox中使用ws:// over https。有没有办法在IE 10中启用此配置。可以通过添加一些注册表项来完成,但我不知道要编辑哪个关键值?

我使用apache httpd服务配置了我的https。哪个路由到我的播放门户网站URL。是否有任何设置/配置我缺少。这是我的httpd配置:

<VirtualHost *:80>
    ServerName myhost

    <Proxy *>
        Order deny,allow
        Allow from all
    </Proxy>

    SSLEngine on
    SSLProxyEngine On

    SSLCertificateFile    /etc/ssl/certs/my.crt
    SSLCertificateKeyFile /etc/ssl/private/my.key


    ProxyRequests on
    ProxyPreserveHost off


<Location />
SetHandler balancer-manager
Order allow,deny
Allow from all
</Location>

#ProxyPass  /excluded !

ProxyPass / http://host-to-route:9701/
ProxyPassReverse / http://host-to-route:9701/

</VirtualHost>

请建议。

谢谢, Sohan

0 个答案:

没有答案