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