Reverse proxy Apache not working

I have my subdomain pointed to my server ip

I have enabled

sudo a2enmod proxy
sudo a2enmod proxy_http
sudo a2enmod proxy_wstunnel

Here is my virtualhost.conf file contents

ProxyRequests off

<Proxy *>
Order deny,allow
Allow from all

ProxyPass /socket.io/1/websocket ws:/myserverip:4567/socket.io/1/websocket
ProxyPassReverse /socket.io/1/websocket ws://myserverip:4567/socket.io/1/websocket

ProxyPass /socket.io/ http:// myserverip:4567/socket.io/
ProxyPassReverse /socket.io/ http:// myserverip:4567/socket.io/

ProxyPass / http:// myserverip:4567/
ProxyPassReverse / http:// myserverip:4567/
apache2

Any ideas?

This topic was automatically closed 91 days after the last reply. New replies are no longer allowed.