tunneling secure websocket connections with apache
问题 I have an Apache running that is only accessible via HTTPS. I want to serve websockets from an additional server application which runs on the same machine, but since it is not possible for clients to connect on another port than 443 to our server, those websocket connections need to be proxied through the Apache. Now, I've installed mod_proxy and configured it as follows: SSLProxyEngine on ProxyPass /ws https://127.0.0.1:9001 This does not work however. I can connect to https://server/ws in