appsettings.json 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. {
  2. "ConnectionStrings": {
  3. //"Default": "Server=.\\SQLEXPRESS; Database=VberAdminDb; Trusted_Connection=True;",
  4. "Default": "Server=47.112.30.247; Database=VberAdminDb_Test; User Id=sa;Password=Iwb2017"
  5. },
  6. "App": {
  7. "WebSiteRootAddress": "http://localhost:5000",
  8. "RedirectAllowedExternalWebSites": ""
  9. },
  10. "AuthSession": {
  11. "ExpireTimeInDays": 14,
  12. "SlidingExpirationEnabled": "true",
  13. "ExpireTimeInMinutes": 60
  14. },
  15. "Authentication": {
  16. "JwtBearer": {
  17. "IsEnabled": "true",
  18. "SecurityKey": "VberAdmin_C421AAEE0D114E9C",
  19. "Issuer": "VberAdmin",
  20. "Audience": "VberAdmin"
  21. }
  22. },
  23. "Auditing": {
  24. "AppAssembly": "VberAdmin.Application.dll",
  25. "WebAssembly": "VberAdmin.Web.Mvc.dll"
  26. },
  27. "Logging": {
  28. "IncludeScopes": false,
  29. "LogLevel": {
  30. "Default": "Debug",
  31. "System": "Information",
  32. "Microsoft": "Information"
  33. }
  34. },
  35. "RecordId": {
  36. "Prefix": "VB",
  37. "TimerInterval": 1,
  38. "Path": "Resources/"
  39. },
  40. "AssemblyInfo": {
  41. "Web": "VberAdmin.Web.Mvc",
  42. "Core": "VberAdmin.Core",
  43. "Application": "VberAdmin.Application"
  44. }
  45. }