注意:更新了配置并在websocket路径中添加了尾部斜杠。还是同样的问题
使用go-websocket的Apache反向代理后面是否可以使用mod_proxy_wstunnel?
我尝试过但没能让事情发挥作用。
我尝试在Apache反向代理(启用the Chat example)后面使用mod_proxy_wstunnel。它不起作用。代理是成功的,而websocket部分根本不起作用。
我的Apache配置看起来与此类似:
<VirtualHost *:80>
DocumentRoot /var/www/foobar
ServerName foobar.com
ProxyPass / http://localhost:8080/
ProxyPassReverse / http://localhost:8080/
ProxyPass /ws/ ws://localhost:8080/ws/
ProxyPassReverse /ws/ ws://localhost:8080/ws/
ErrorLog logs/error_log-foobar
CustomLog logs/access_log-foobar common
LogLevel debug
</VirtualHost>
当然,我正在8080端口上运行聊天服务器。我已经使用SSH隧道对其进行了测试,并且工作正常。然后我转到Apache。
我第一次尝试时,javascript控制台抱怨这个:
NetworkError: 403 Forbidden - http://foobar.com/ws/
请求似乎停留在原始检查。 然后我在评论原点检查后再次尝试,它得到了这个:
NetworkError: 400 Bad Request - http://foobar.com/ws/
聊天服务器似乎根本没有获得升级请求。
我该如何调试? 我应该从哪里开始寻找?
答案 0 :(得分:19)
谢谢大家!在上面提出几个建议后,我找到了解决方案。
对于可能有类似问题的人,以下是我的问题的解决方案:
如Aralo所示,必须将尾部斜杠添加到WebSocket路径(在我的情况下:“/ ws /”)。看起来Apache只会使用有效的GET请求来处理WebSocket。
James Henstridge是对的。 ProxyPass的顺序相关。 / ws /的ProxyPass必须放在/ line之前。
在查阅聊天示例代码后,我在函数an origin check中找到了ServeWs()并将其删除。
现在一切正常。
感谢covener,阅读日志确实有帮助。
答案 1 :(得分:7)
我在CentOS 7上使用Apache 2.4.18后面的Go安全WebSocket(wss://)服务器。以下是设置:
确保系统具有mod_proxy_wstunnel:
#find / usr / lib64 / httpd / modules / | grep ws
/usr/lib64/httpd/modules/mod_proxy_wstunnel.so
在00-proxy.conf中添加以下行:
#vim /etc/httpd/conf.modules.d/00-proxy.conf
LoadModule proxy_wstunnel_module modules/mod_proxy_wstunnel.so
重启Apache:
#systemctl restart httpd
检查设置:
#httpd -M | grep -iE'代理'
proxy_module (shared)
proxy_fcgi_module (shared)
proxy_http_module (shared)
proxy_wstunnel_module (shared)
编辑httpd-vhosts.conf:
#vim /etc/httpd/conf.d/httpd-vhosts.conf
<VirtualHost *:443>
ServerName go.mydomain.com:443
ProxyPreserveHost On
ProxyRequests off
SSLProxyEngine On
SSLCertificateFile "/etc/pki/tls/certs/mydomain.com/mydomain.crt"
SSLCertificateKeyFile "/etc/pki/tls/certs/mydomain.com/mydomain.key"
### The configured ProxyPass and ProxyPassMatch rules are checked
### in the order of configuration. The first rule that matches wins.
ProxyPassMatch ^/(ws(/.*)?)$ wss://192.168.0.1:443/$1
ProxyPass / https://192.168.0.1:443/
ProxyPassReverse / https://192.168.0.1:443/
ErrorLog "/var/log/httpd/go.mydomain.com-error_log"
CustomLog "/var/log/httpd/go.mydomain.com-access_log" common
</VirtualHost>
<VirtualHost *:80>
ServerName go.mydomain.com:80
ProxyPreserveHost On
ProxyRequests off
###
ProxyPassMatch ^/(ws(/.*)?)$ ws://192.168.0.1:80/$1
ProxyPass / http://192.168.0.1:80/
ProxyPassReverse / http://192.168.0.1:80/
ErrorLog "/var/log/httpd/go.mydomain.com-error_log"
CustomLog "/var/log/httpd/go.mydomain.com-access_log" common
</VirtualHost>