asp.net core signalr Error: Failed to start the transport 'WebSockets': null

关于signalr 线上https 环境报错Error: Failed to start the transport 'WebSockets': null 的解决方案:

1、问题

    本地http与https 连接无异常,但是前端通过nginx转发访问,会报异常

2、原因

    nginx 默认不支持websockets 

3、解决方案:

在对应访问的域名下添加如下配置:

    proxy_pass http://backend;

    proxy_http_version 1.1;

    proxy_set_header Upgrade $http_upgrade;

    proxy_set_header Connection "upgrade";


 

f you have you app in Windows Server just enable thw "WebSocket Protocol".

 

posted @ 2020-09-19 16:11  跟着阿笨一起玩.NET  阅读(1560)  评论(0编辑  收藏  举报