Identityserver per tenant options loginurl #592
-
Hi, I am trying to create a multi-tenant identityserver setup with a different login URL per tenant. I am using a SPA for the login-part of the process, and as such need to redirect to I have tried the perTenantOptions for both
Identityserver will redirect to the local It seems like the options are being cached by idsrv and I don't see any way of overriding these after identityserver has been started. Am I missing something, or is what I am trying to do not possible? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Hi, unfortunately you are not missing anything. I've dug into it and they aren't currently using the Options pattern the way ASP.NET presents it, and they do cache things. Your best bet is to look at their end point implementations and make your own logic customizations there. |
Beta Was this translation helpful? Give feedback.
Hi, unfortunately you are not missing anything. I've dug into it and they aren't currently using the Options pattern the way ASP.NET presents it, and they do cache things.
Your best bet is to look at their end point implementations and make your own logic customizations there.