Hosting with IIS?

When hosting with IIS, is kestrel web server still being used in any capacity? Going through information assurance approval process.

Thanks

It depends on if you are using InProcess or OutOfProcess hosting. InProcess does not use Kestrel. OutOfProcess does.

More details on the MSFT docs.

In-process hosting with IIS and ASP.NET Core | Microsoft Docs

Out-of-process hosting with IIS and ASP.NET Core | Microsoft Docs

1 Like

Thanks a lot.