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".

 


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM