Files
eShopOnWeb/src/PublicApi/appsettings.json
Cédric Michel 530df9d685 fix to remove usage of IIS port. (#552)
* fix to not using IIS port.
add more information in readme to start application with correct profile correcponding in the appsettings

* Update README.md

Co-authored-by: Steve Smith <steve@kentsmiths.com>
2021-10-24 17:55:35 -04:00

21 lines
609 B
JSON

{
"baseUrls": {
"apiBase": "https://localhost:5099/api/",
"webBase": "https://localhost:5001/"
},
"ConnectionStrings": {
"CatalogConnection": "Server=(localdb)\\mssqllocaldb;Integrated Security=true;Initial Catalog=Microsoft.eShopOnWeb.CatalogDb;",
"IdentityConnection": "Server=(localdb)\\mssqllocaldb;Integrated Security=true;Initial Catalog=Microsoft.eShopOnWeb.Identity;"
},
"CatalogBaseUrl": "",
"Logging": {
"IncludeScopes": false,
"LogLevel": {
"Default": "Warning",
"Microsoft": "Warning",
"System": "Warning"
},
"AllowedHosts": "*"
}
}