Typo in json config prevented me from running my app on Linux (#12924)
parent
2efb4554f8
commit
b92da62f72
|
@ -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"
|
||||
|
|
Loading…
Reference in New Issue