Webmasters Stack Exchange is a question and answer site for pro webmasters. It's 100% free, no registration required.

Sign up
Here's how it works:
  1. Anybody can ask a question
  2. Anybody can answer
  3. The best answers are voted up and rise to the top

I have my subdomain pointing 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
</Proxy>
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/
share|improve this question

put on hold as too broad by dan 11 hours ago

There are either too many possible answers, or good answers would be too long for this format. Please add details to narrow the answer set or to isolate an issue that can be answered in a few paragraphs.If this question can be reworded to fit the rules in the help center, please edit the question.

1  
In what way is it not working, what is happening, what errors are you getting, providing more information would be good. – PlanetScale Networks Apr 11 at 7:04

Browse other questions tagged or ask your own question.