/ appsettings.json
appsettings.json
 1  {
 2    "Logging": {
 3      "LogLevel": {
 4        "Default": "Information",
 5        "Microsoft": "Warning",
 6        "Microsoft.Hosting.Lifetime": "Information"
 7      }
 8    },
 9    "Kestrel": {
10      "EndPoints": {
11        "Http": {
12          "Protocols": "Http2",
13          "Url": "http://*:5000"
14        },
15        "Https": {
16          "Protocols": "Http1",
17          "Url": "http://*:5001"
18        }
19      }
20    },
21    "AllowedHosts": "*"
22  }