Websocket Apache Proxy Issues With Ssl
So I have a site that uses https and websockets and socket.io (with node.js). The websocket will initially try to connect directly var socket = io('https://' + socket_ip_addr + ':
Solution 1:
Alright.. I'm just dumb. I checked the apache logs and added some extra commands, now it works fine. Additional things include:
SSLProxyEngine on //apache log told me about this
SSLProxyVerify none
SSLProxyCheckPeerCN off
SSLProxyCheckPeerName off
SSLProxyCheckPeerExpire off
RequestHeader set Front-End-Https "On"
Post a Comment for "Websocket Apache Proxy Issues With Ssl"