c# – .net core 2.1.3 ssl错误

前端之家收集整理的这篇文章主要介绍了c# – .net core 2.1.3 ssl错误前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
大家好,我现在正在使用.net core 2.1.3
当我尝试通过firefox或chrome打开时,通过“dotnet new webapi”安装webapi项目时,它给了我这个错误

HttpsConnectionAdapter[1] Failed to authenticate HTTPS connection.
System.IO.IOException: Authentication Failed because the remote party has closed the transport stream.

@H_301_8@

解决方法

我面临同样的问题.
在我的测试中,似乎使用Kestrel和SSL的问题. (其他IISExpress可以)

当您浏览它时,看起来SSL还没有准备好.

对我来说,修复只是简单地改变launchSetting中的位置:

"applicationUrl": "https://localhost:443;http://localhost:80"

"applicationUrl": "http://localhost:80;https://localhost:443"

使用app.UseHttpsRedirection();在Startup.cs中

它将首先进入端口80,然后重定向到端口443

@H_301_8@ @H_301_8@

猜你在找的.NET Core相关文章