signalr线上https异常:Failed to start the transport 'WebSockets'

关于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";

signalr线上https异常:Failed to start the transport 'WebSockets'

上一篇:charles使用大全(https://www.jianshu.com/p/d0a5e6986445/)


下一篇:chattr命令,设置linux文件的隐藏权限