Created
July 9, 2020 00:52
-
-
Save PradeepLoganathan/8cf017504b346a82f26afd704088c7d8 to your computer and use it in GitHub Desktop.
Configuring http2 using appsettings
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| "Kestrel": { | |
| "EndPoints": { | |
| "Http": { | |
| "Url": "http://localhost:5000" | |
| }, | |
| "HttpsInlineCertFile": { | |
| "Url": "https://localhost:5001", | |
| "Protocols": "Http1AndHttp2", | |
| "Certificate": { | |
| "Path": "./certificate.pfx", | |
| "Password": "DoNotUsePassword", | |
| "AllowInvalid": "true" | |
| } | |
| } | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment