From 1dc7c832baab4642df971d709fad742be70d6309 Mon Sep 17 00:00:00 2001 From: Zoe Roux Date: Mon, 6 Apr 2020 19:09:17 +0200 Subject: [PATCH] Setting the issuer id --- Kyoo/Startup.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/Kyoo/Startup.cs b/Kyoo/Startup.cs index 00996959..64e318d9 100644 --- a/Kyoo/Startup.cs +++ b/Kyoo/Startup.cs @@ -49,6 +49,7 @@ namespace Kyoo services.AddIdentityServer(options => { + options.IssuerUri = publicUrl; options.UserInteraction.LoginUrl = publicUrl + "login"; options.UserInteraction.ErrorUrl = publicUrl + "error"; options.UserInteraction.LogoutUrl = publicUrl + "logout";