打开 关闭

Manually modify Identity Server options for AddIdentityServer #45


User avatar
0
ismailyildirim 创建

identityserver4 allows for some options to be set while adding the identityserver service. For our kubernetes deployment we wat to set the issuerurl for the identityserver to something else other than null. Normally in identityserver4 we would do it like this :

services.AddIdentityServer(options => { options.IssuerUri = "custom-url"; }) How can we do this with abp identityserver.


2 答案
  • User Avatar
    0
    ismcagdas 创建
    支持团队 Co-Founder

    Hi,

    You can configure it like this;

    Configure<IdentityServerOptions>(options => { options.IssuerUri = "Your issuer URL"; });

  • User Avatar
    0
    ismailyildirim 创建

    Thank you.

Made with ❤️ on ABP v8.2.0-preview Updated on 三月 25, 2024, 15:11