Created
March 24, 2022 15:40
-
-
Save mortezadalil/a2f3aa486486bb34e3a56c518887dc6f to your computer and use it in GitHub Desktop.
This file contains 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
{ | |
"DatabaseSettings": { | |
"ConnectionString": "Server=localhost;Port=5432;Database=DiscountDb;User Id=postgres;Password=123456;" | |
}, | |
"Logging": { | |
"LogLevel": { | |
"Default": "Information", | |
"Microsoft.AspNetCore": "Warning" | |
} | |
}, | |
"AllowedHosts": "*", | |
"Kestrel": { | |
"Endpoints": { | |
"Grpc": { | |
"Protocols": "Http2", | |
"Url": "http://+:5003" | |
}, | |
"webApi": { | |
"Protocols": "Http1", | |
"Url": "http://+:5001" | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment