Setting the public origin

This commit is contained in:
Zoe Roux 2020-04-06 19:18:38 +02:00
parent 1dc7c832ba
commit 4b7b0fe1a9

View File

@ -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";