Reputation: 39
I want to deploy an ASP.NET Core application in Linux with Windows authorization.
I understand approximately what I need to configure, for example, nginx as a reverse proxy server that will forward Kerberos to Kestrel. But I don’t understand if Kestrel can accept kerberos tokens or how it needs to be configured for this scheme to work? For IIS we need add this:
services.AddAuthentication(IISDefaults.AuthenticationScheme)
Upvotes: 1
Views: 1119
Reputation: 8609
Base on :
Notice :
Windows Authentication can be configured for ASP.NET Core apps hosted with IIS or HTTP.sys.
Windows Authentication relies on the operating system to authenticate users of ASP.NET Core apps.
IIS and HTTP.sys only runs on Windows
Upvotes: 1