Skip to content

Commit b92da62

Browse files
m17keaguardrex
authored andcommitted
Typo in json config prevented me from running my app on Linux (dotnet#12924)
1 parent 2efb455 commit b92da62

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

aspnetcore/fundamentals/servers/kestrel.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description: Learn about Kestrel, the cross-platform web server for ASP.NET Core
55
monikerRange: '>= aspnetcore-2.1'
66
ms.author: tdykstra
77
ms.custom: mvc
8-
ms.date: 05/28/2019
8+
ms.date: 06/18/2019
99
uid: fundamentals/servers/kestrel
1010
---
1111
# Kestrel web server implementation in ASP.NET Core
@@ -633,7 +633,7 @@ In the following *appsettings.json* example:
633633
```json
634634
{
635635
"Kestrel": {
636-
"EndPoints": {
636+
"Endpoints": {
637637
"Http": {
638638
"Url": "http://localhost:5000"
639639
},
@@ -1050,7 +1050,7 @@ In the following *appsettings.json* example, a default connection protocol (HTTP
10501050
```json
10511051
{
10521052
"Kestrel": {
1053-
"EndPointDefaults": {
1053+
"EndpointDefaults": {
10541054
"Protocols": "Http1AndHttp2"
10551055
}
10561056
}
@@ -1062,7 +1062,7 @@ The following configuration file example establishes a connection protocol for a
10621062
```json
10631063
{
10641064
"Kestrel": {
1065-
"EndPoints": {
1065+
"Endpoints": {
10661066
"HttpsDefaultCert": {
10671067
"Url": "https://localhost:5001",
10681068
"Protocols": "Http1AndHttp2"

0 commit comments

Comments
 (0)