I was working around IdentityServer 4 (1.0.0-beta5).
By default, the endpoint for authentication is: \'/connect/token\'.
How can I change t
Just add this to Startup.cs
services.ConfigureApplicationCookie(config => { config.Cookie.Name = "IdentityServer.Cookie"; config.LoginPath = "/Auth/Login"; config.LogoutPath = "/Auth/Logout"; });