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