Advertisement
kromm77

appsettings.json - example

Nov 11th, 2019
210
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 0.37 KB | None | 0 0
  1. ##appsettings.json -- example with database connection
  2.  
  3. "ConnectionStrings": {
  4.     "DefaultConnection": "Server=localhost; Database=Identity; User ID=SA; Password=passwordEASY123;",
  5.   },
  6.   "Logging": {
  7.     "LogLevel": {
  8.       "Default": "Information",
  9.       "Microsoft": "Warning",
  10.       "Microsoft.Hosting.Lifetime": "Information"
  11.     }
  12.   },
  13.   "AllowedHosts": "*"
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement