Вы можете установить путь к странице входа в систему с помощью настроек UserInteraction . Подробнее о потоке входа в IDS4 здесь .
Например, если у вас есть приложение angular, размещенное на http://localhost:3000
, настройки выглядят так:
services.AddIdentityServer(
options =>
{
options.UserInteraction.LoginUrl = "http://localhost:3000/login";
options.UserInteraction.ErrorUrl = "http://localhost:3000/error";
options.UserInteraction.LogoutUrl = "http://localhost:3000/logout";
})
.AddInMemoryIdentityResources(Config.GetIdentityResources())
.AddInMemoryApiResources(Config.GetApis())
.AddInMemoryClients(Config.GetClients())
.AddTestUsers(Config.GetTestUsers());
Здесь - запись со всеми подробностями.