我正在尝试使用IdentityServer 4。 目前我正在使用此链接https://github.com/IdentityServer/IdentityServer4.Samples作为示例。
我的问题是使用 http://localhost:22530/ IdentityServer加载并正常工作,但在http://identity.test.dev下的IIS上将其用作托管网站,但未加载。
我已经尝试运行此示例https://github.com/IdentityServer/IdentityServer4.Samples/tree/dev/Mvc/src/IdSvrHost中的代码,但它不起作用。
如何通过http://identity.test.dev在IIS下启动IdentityServer?
答案 0 :(得分:4)
看起来我解决了我的问题。
例如,在发布期间没有标记要复制的所有文件夹和文件时。这就是我添加它们的原因,请参阅下面的代码:
project.json
"publishOptions": {
"include": [
"wwwroot",
"UI",
"damienbodserver.pfx",
"web.config"
]}