gpt4 book ai didi

identityserver4 - 重写发现页面中的 URL (.well-known/openid-configuration)

转载 作者:行者123 更新时间:2023-12-01 12:13:56 24 4
gpt4 key购买 nike

我让 IdentityServer4 在负载均衡器后面运行,该负载均衡器将 https 调用重定向到 http 资源。这意味着我的 IdentityServer 将在 http 上运行,但需要在其发现页面 (.well-known/openid-configuration) 中显示 https URL。

将此页面上的 http url 转换为 https 的最优雅的方法是什么?

最佳答案

设置 PublicOrigin 选项(参见 docs )。

services.AddIdentityServer( options => 
options.PublicOrigin = "https://foo.bar.com"
)
.AddSigningCredential(...)
.AddValidationKey(...)
.AddInMemoryIdentityResources(...)
.AddInMemoryClients(...)
.AddProfileService<...>();

关于identityserver4 - 重写发现页面中的 URL (.well-known/openid-configuration),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49657754/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com