From 989f7c0fe3ba5a4c4c5b6b8e083c15ec2d39fe78 Mon Sep 17 00:00:00 2001 From: Rick Anderson <3605364+Rick-Anderson@users.noreply.github.com> Date: Sat, 22 May 2021 11:22:51 +1000 Subject: [PATCH] Update kestrel.md /path-4 (#22369) * Update kestrel.md * Update index.md * Apply suggestions from code review Co-authored-by: Luke Latham <1622880+guardrex@users.noreply.github.com> Co-authored-by: Luke Latham <1622880+guardrex@users.noreply.github.com> --- aspnetcore/fundamentals/servers/kestrel.md | 4 ++++ aspnetcore/host-and-deploy/iis/index.md | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/aspnetcore/fundamentals/servers/kestrel.md b/aspnetcore/fundamentals/servers/kestrel.md index f9b00bee2c..1ac1e2c24e 100644 --- a/aspnetcore/fundamentals/servers/kestrel.md +++ b/aspnetcore/fundamentals/servers/kestrel.md @@ -39,6 +39,10 @@ ASP.NET Core project templates use Kestrel by default. In *Program.cs*, the For more information on building the host, see the *Set up a host* and *Default builder settings* sections of . +## Optional client certificates + +For information on apps that must protect a subset of the app with a certificate, see [Optional client certificates](xref:security/authentication/certauth#optional-client-certificates). + ## Additional resources diff --git a/aspnetcore/host-and-deploy/iis/index.md b/aspnetcore/host-and-deploy/iis/index.md index 0a87f53eaf..98fbe2889e 100644 --- a/aspnetcore/host-and-deploy/iis/index.md +++ b/aspnetcore/host-and-deploy/iis/index.md @@ -57,6 +57,10 @@ For getting started with hosting a website on Azure App Services, see our [deplo In general, we recommend using a pattern like [blue-green deployments](https://www.martinfowler.com/bliki/BlueGreenDeployment.html) for zero-downtime deployments. Features like Overlapped Recycle help, but don't guarantee that you can do a zero-downtime deployment. For more information, see [this GitHub issue](https://github.com/dotnet/aspnetcore/issues/10117). +## Optional client certificates + +For information on apps that must protect a subset of the app with a certificate, see [Optional client certificates](xref:security/authentication/certauth#optional-client-certificates). + ## Additional resources *