.NET 6.0:新的 Blazor 项目抛出 Websocket 错误

.NET 6.0: new Blazor project throws Websocket error

我 运行 目前是一个网络服务器 ASP.NET Core 3.1 和一个 Blazor 项目。 最近在升级到 .NET 6.0 时,我遇到了一些问题(即使是一个空白的 Blazor 项目),只有在我的网络服务器上部署时,浏览器中才会出现 websocket 错误消息(请参阅下面的消息)。

本地(在 Windows 11 x64,VS 22 Preview 4 上)没有错误消息...

Web 服务器:Debian 10 x64,安装了 .NET 6.0 SDK,运行 在 NGINX 上启用了 websockets(反向代理)。

我是否遗漏了什么,或者这是 .NET 6.0 和 NGINX 当前状态的问题?我已经尝试在debian服务器本地访问网页,出现同样的错误信息。

不胜感激!

您好!

订单中的错误信息:

Information: Normalizing '_blazor' to 'http://192.168.178.35/_blazor'.

blazor.server.js:1 WebSocket connection to 'ws://192.168.178.35/_blazor?id=wnPt_fXa9H4Jpia530vPWQ' failed:

Information: (WebSockets transport) There was an error with the transport.

Error: Failed to start the transport 'WebSockets': Error: WebSocket failed to connect. The connection could not be found on the server, either the endpoint may not be a SignalR endpoint, the connection ID is not present on the server, or there is a proxy blocking WebSockets. If you have multiple servers check that sticky sessions are enabled.

Warning: Failed to connect via WebSockets, using the Long Polling fallback transport. This may be due to a VPN or proxy blocking the connection. To troubleshoot this, visit https://aka.ms/blazor-server-using-fallback-long-polling.

这里再描述一下解决方法,可能更方便一点:

为了解决这个问题,我在nginx的site-configuration(/etc/nginx/sites-available)中更改了以下变量:

proxy_set_header Connection $connection_upgrade;

proxy_set_header Connection $http_connection;

对我来说,这解决了问题。