一直在使用这个客户端库:[Websocket Sharp][1] 为 WPF 应用程序实现我的 websocket 客户端。问题是,如果我使用这个库的SetProxy方法来连接没有基本身份验证的 NGINX,即使 NGINX 服务器没有配置基本身份验证,我也无法建立连接。
但是,当我将客户端直接连接到后端服务器而不通过 NGINX 时,一切正常。
这是我的客户代码:
using (var ws = new WebSocket("ws://localhost:5555/testnginx"))
{
ws.SetProxy("http://localhost:5555", null, null);
ws.OnMessage += (sender, e) => {
Debug.WriteLine("Received a message: " + e.Data);
};
这是我的 NGINX 设置:
location /testnginx{
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
proxy_set_header HOST $host;
proxy_set_header X_Forwarded_For $remote_addr;
proxy_pass http://socketservers;
#proxy_pass http://localhost:7777/gs-guide-websocket;
proxy_redirect default;
client_max_body_size 1000m;
}
或者有什么替代方法可以连接到支持 NGINX 的 spring websocket 服务器?[1]:https ://github.com/sta/websocket-sharp