如何配置 Wampserver 作为 WebSocket 代理?

How to configure Wampserver to act as a WebSocket proxy?

我正在尝试为 WebSocket 聊天应用程序设置代理服务器,但客户端告诉我它无法与代理建立连接。我是 WebSockets 的新手,所以我可能错过了一些东西。

我目前的设置如下:

我已将以下行添加到 WampServer 的 httpd.conf 文件中:

Listen 0.0.0.0:6060
Listen [::0]:6060
ServerName localhost:6060

# block anyone but localhost from accessing my computer's C: drive
<Directory />
   Options FollowSymLinks
   AllowOverride none
   Order Deny,Allow     
   Deny from all
   Allow from 127.0.0.1 ::1
   Require all denied
</Directory>

# set up a proxy on port 6060,forwarding any WebSocket requests to port 8080
<VirtualHost *:6060>
   ServerName proxyTestServer
   ProxyRequests Off
   ProxyPreserveHost On
   ProxyPass            /ws/    ws://[IPADDRESS]:8080/Chatroom/chatroom/
   ProxyPass            /wss/   wss://[IPADDRESS]:8080/Chatroom/chatroom/
   ProxyPassReverse     /ws/    ws://[IPADDRESS]:8080/Chatroom/chatroom/
   ProxyPassReverse     /wss/   wss://[IPADDRESS]:8080/Chatroom/chatroom/
</VirtualHost>

客户端中的WebSocket定义如下,使用普通的Java脚本:

chatSocket = new WebSocket("wss://[IPADDRESS]:6060");

Firefox 35 和 Chrome40 都无法连接到代理。这让我怀疑我的地址有误或代理配置不正确(尽管 Wampserver 没有显示任何错误)。就像我在顶部所说的那样,我对 WebSockets 很陌生,所以我很可能忽略了一些东西。

更新(2015 年 2 月 2 日):在查看 mod_proxy 上的文档后,我更改了配置文件,以便服务器和客户端通过端口 80 进行通信,以及以下内容。然而,这并没有奏效。

ProxyRequests Off
ProxyPass        /chatProxy/        ws://localhost:8080/ChatProxy/ChatProxy/
ProxyPassReverse /chatProxy/        ws://localhost:8080/ChatProxy/ChatProxy/
ProxyPass        /chatProxy/        wss://localhost:8080/ChatProxy/ChatProxy/
ProxyPassReverse /chatProxy/        wss://localhost:8080/ChatProxy/ChatProxy/

我设法解决了这个问题:

  • 客户端托管在我机器上的 6060 端口。
  • 后端服务器是一个 Java servlet(注释为 "ChatProxy")运行 通过我机器上的 Glassfish 端口 8080。
  • 代理服务器在另一台机器上,监听端口 6060。
  • 客户端使用标准 WebSocket 连接,即ws://ProxyIP:6060/chatProxy

我的代理有以下配置:

# The proxy listens to a specific IP address
Listen [ProxyIP]:6060
ServerName [ProxyIP]:6060   

<VirtualHost *:6060>

   ServerName proxyserver
   ProxyRequests Off
   ProxyPreserveHost On
   ProxyVia On

   <Proxy *>
      Order deny,allow
      Allow from all          
   </Proxy>

   # anything on port 6060 which ends in /chatProxy will be redirected
   <Location /chatProxy>
      ProxyPass           ws://MyIP:8080/ChatProxy/ChatProxy
      ProxyPassReverse    ws://MyIP:8080/ChatProxy/ChatProxy

      # wss is similar, but obviously prefaced by wss instead of ws
   </Location>
</Virtual Host>

我不完全确定为什么它现在可以工作,但我注意到如果客户端使用 WebSocketSecure 连接它就不起作用。所以,我可能没有正确配置 SSL,但我想我可以稍后解决。