Fix IfModule section (it's .c not .so)

This commit is contained in:
Daniel Berteaud 2014-06-18 17:48:08 +02:00
parent a4cacdddb6
commit 80968c2dd9
2 changed files with 4 additions and 4 deletions

View File

@ -1,4 +1,4 @@
<IfModule mod_proxy_wstunnel.so>
<IfModule mod_proxy_wstunnel.c>
ProxyPass /socket.io/1/websocket ws://localhost:8888/socket.io/1/websocket
ProxyPassReverse /socket.io/1/websocket ws://localhost:8888/socket.io/1/websocket
</IfModule>
@ -8,7 +8,7 @@ ProxyPassReverse /socket.io/ http://localhost:8888/socket.io/
# Etherpad example
# If you install etherpad on the same box, listening on its default
# port (9001) and want it to be accessible on /etherpad/
# <IfModule mod_proxy_wstunnel.so>
# <IfModule mod_proxy_wstunnel.c>
# ProxyPass /etherpad/socket.io/1/websocket ws://localhost:9001/socket.io/1/websocket
# ProxyPassReverse /etherpad/socket.io/1/websocket ws://localhost:9001/socket.io/1/websocket
# </IfModule>

View File

@ -8,7 +8,7 @@
ServerName vroom.example.com
SSLEngine on
DocumentRoot /opt/vroom/public
<IfModule mod_proxy_wstunnel.so>
<IfModule mod_proxy_wstunnel.c>
ProxyPass /socket.io/1/websocket ws://localhost:8889/socket.io/1/websocket
ProxyPassReverse /socket.io/1/websocket ws://localhost:8888/socket.io/1/websocket
</IfModule>
@ -18,7 +18,7 @@
# Etherpad example
# If you install etherpad on the same box, listening on its default
# port (9001) and want it to be accessible on /etherpad/
# <IfModule mod_proxy_wstunnel.so>
# <IfModule mod_proxy_wstunnel.c>
# ProxyPass /etherpad/socket.io/1/websocket ws://localhost:9001/socket.io/1/websocket
# ProxyPassReverse /etherpad/socket.io/1/websocket ws://localhost:9001/socket.io/1/websocket
# </IfModule>