使用 IIS 的 IdentityServer 4

IdentityServer 4 using IIS

我正在尝试使用 IdentityServer 4。 现在我使用这个 link 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?

看来我的问题解决了。

例如,在发布过程中,并非所有文件夹和文件都被标记为要复制。这就是我添加它们的原因,请参见下面的代码:

project.json

"publishOptions": {
  "include": [
    "wwwroot",
    "UI",
    "damienbodserver.pfx",
    "web.config"
  ]}