From b92da62f72cd0f031fc7bb695871d85324b10ed7 Mon Sep 17 00:00:00 2001 From: armitagemderivitec Date: Tue, 18 Jun 2019 19:41:30 +0100 Subject: [PATCH] Typo in json config prevented me from running my app on Linux (#12924) --- aspnetcore/fundamentals/servers/kestrel.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/aspnetcore/fundamentals/servers/kestrel.md b/aspnetcore/fundamentals/servers/kestrel.md index 3ecedb8fb3..2356c07259 100644 --- a/aspnetcore/fundamentals/servers/kestrel.md +++ b/aspnetcore/fundamentals/servers/kestrel.md @@ -5,7 +5,7 @@ description: Learn about Kestrel, the cross-platform web server for ASP.NET Core monikerRange: '>= aspnetcore-2.1' ms.author: tdykstra ms.custom: mvc -ms.date: 05/28/2019 +ms.date: 06/18/2019 uid: fundamentals/servers/kestrel --- # Kestrel web server implementation in ASP.NET Core @@ -633,7 +633,7 @@ In the following *appsettings.json* example: ```json { "Kestrel": { - "EndPoints": { + "Endpoints": { "Http": { "Url": "http://localhost:5000" }, @@ -1050,7 +1050,7 @@ In the following *appsettings.json* example, a default connection protocol (HTTP ```json { "Kestrel": { - "EndPointDefaults": { + "EndpointDefaults": { "Protocols": "Http1AndHttp2" } } @@ -1062,7 +1062,7 @@ The following configuration file example establishes a connection protocol for a ```json { "Kestrel": { - "EndPoints": { + "Endpoints": { "HttpsDefaultCert": { "Url": "https://localhost:5001", "Protocols": "Http1AndHttp2"