我当前正处于IdentityServer 4 guide的此页面,正在尝试启动服务器。my properties但是,当我运行它时,我的浏览器弹出这个页面http://localhost:5000,它不可用(无法访问,因为它没有连接)我可以知道如何托管服务器吗?我完全按照教程来做
发布于 2020-05-06 17:20:50
我确实验证了,如果我使用Github上的示例中的JSON,它就会正确地命中发现端点;将模板创建的JSON替换为:
{
"iisSettings": {
"windowsAuthentication": false,
"anonymousAuthentication": true,
"iisExpress": {
"applicationUrl": "http://localhost:5000",
"sslPort": 0
}
},
"profiles": {
"IIS Express": {
"commandName": "IISExpress",
"launchBrowser": true,
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
}
},
"SelfHost": {
"commandName": "Project",
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
},
"applicationUrl": "http://localhost:5000"
}
}
}https://stackoverflow.com/questions/61629544
复制相似问题