Hi, How do I enable websocket for apache? The following seems to be not working: ProxyPass /wss2/ ws://http://127.0.0.1:3000/ ProxyPassReverse /wss2/ ws://http://127.0.0.1:3000/ Thank you!
That's not ISPConfig related. See here: https://httpd.apache.org/docs/2.4/mod/mod_proxy_wstunnel.html Depending on your Apache version, you'll probably have to enable the Apache mod_proxy_wstunnel module. On Debian and Ubuntu, this is probably done via a2enmod: Code: a2enmod mod_proxy_wstunnel service apache2 restart