尝试通过我的Apache2服务器访问ws:// localhost:8080 /时收到错误500。该服务器运行OpenSuse Leap 42.1和Apache 2.4.16。
启用了这些Apache2模块:mod_proxy,mod_proxy_http,mod_proxy_wstunnel。
当从本地网络调用请求时,一切正常。网址示例:http://<myhost-ip-address>/api/ws/<some-url>
。它返回状态101和响应:Upgrade: websocket
。没关系。
来自外部网络的同类请求失败。网址示例:ws://www.mysite.com/api/ws/<some-url>
。它返回错误500。
Apache访问日志包含:GET /api/ws/<some-url> HTTP/1.1" 500 ...
Apache错误日志包含:[proxy:warn] AH01144: No protocol handler was valid for the URL /api/ws/<some-url>. If you are using a DSO version of mod_proxy, make sure the proxy submodules are included in the configuration using LoadModule.
我的httpd.conf:
<VirtualHost *:80>
ServerName mysite.com
ServerAlias mysite.com
# Redirection for ws protocol
ProxyPreserveHost On
ProxyVia full
ProxyRequests OffHere
RewriteEngine On
RewriteCond %{REQUEST_URI} ^/api/ws/(.*) [NC]
RewriteCond %{QUERY_STRING} transport=websocket [NC]
RewriteRule /(.*) ws://localhost:8080/$1 [P,L]
# Proxy pass
ProxyPass /api/ws/ ws://localhost:8080/api/ws/
ProxyPassReverse /api/ws/ ws://localhost:8080/api/ws/
# DocumentRoot
DocumentRoot /srv/www/vhosts/mysite.com
<Directory "/srv/www/vhosts/mysite.com">
Options Indexes SymLinksIfOwnerMatch
AllowOverride None
...
</Directory>
# URL as parameter
AllowEncodedSlashes NoDecode
我按照之前的StackOverflow回答(谢天谢地): websockets,node.js,socket-io,但没有运气。
我的配置一定有问题。有什么想法吗?
修改
根据adona9的建议,这里是调试日志:
proxy_util.c(1784): AH00925: initializing worker ws://localhost:8080/api/ws/ shared
proxy_util.c(1826): AH00927: initializing worker ws://localhost:8080/api/ws/ local
...
mod_authz_core.c(809): AH01626: authorization result of Require user <user>: granted
mod_authz_core.c(809): AH01626: authorization result of <RequireAny>: granted
mod_charset_lite.c(219): AH01448: incomplete configuration: src unspecified, dst unspecified
mod_proxy.c(1159): AH01143: Running scheme ws handler (attempt 0)
mod_proxy_http.c(1944): AH01113: HTTP: declining URL ws://localhost:8080/api/ws/<some-url>
mod_proxy_wstunnel.c(341): AH02900: declining URL ws://localhost:8080/api/ws/<some-url> (not WebSocket)
[proxy:warn] H01144: No protocol handler was valid for the URL /api/ws/<some-url>. If you are using a DSO version of mod_proxy, make sure the proxy submodules are included in the configuration using LoadModule.
有什么想法吗?
答案 0 :(得分:0)
因此,我最终花了一天半的时间研究和阅读有关apache2深度配置的信息。这就是我能够解决此问题的方式:
同时使用forensic_logs和DumpIO在apache2端查找我的初始请求标头。
记录来自websocket客户端的请求标头。
验证,在请求标头中均包含升级标头和连接类型websocket。这些问题很有可能是网络过滤或删除特定头文件导致的。
我的问题是我使用的是不支持websocket连接的AWS经典负载均衡器。
在阅读其他论坛时,一些公司的防火墙也会从其连接中删除特定的头文件,所以也可能是这样。
如果您三重检查以确保安装了正确的模块,那么与网络相关的错误可能性就更大。
如果有网络图,请检查每个特定的节点和网关,并验证输入和输出请求标头是否相同。