appsettings.Development.json 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. {
  2. "DetailedErrors": true,
  3. "Logging": {
  4. "LogLevel": {
  5. "Default": "Information",
  6. "Microsoft.AspNetCore": "Warning",
  7. "Microsoft.EntityFrameWorkCore.Database.Command": "Warning",
  8. "LuckyPennySoftware.MediatR.License": "None"
  9. }
  10. },
  11. "AllowedHosts": "*",
  12. "ConnectionStrings": {
  13. "DefaultConnection": "Server=(localdb)\\mssqllocaldb;Database=dpot;Trusted_Connection=True;MultipleActiveResultSets=true",
  14. "IdentityDbContextConnection": "Server=(localdb)\\mssqllocaldb;Database=dpot;Trusted_Connection=True;MultipleActiveResultSets=true"
  15. },
  16. "Kestrel": {
  17. "Endpoints": {
  18. "Https": {
  19. "Url": "https://localhost:5000"
  20. }
  21. },
  22. "Limits": {
  23. "MaxRequestBodySize": 52428800
  24. }
  25. },
  26. "App": {
  27. "Name": "DPOT Admin",
  28. "Company": "PLAYR",
  29. "BaseURL": "https://localhost:5000",
  30. "ApiURL": "https://localhost:4000",
  31. "FrontURL": "https://localhost:3000"
  32. },
  33. "Redis": {
  34. "DefaultConnection": "192.168.0.100:6379,password=bluescreen!!,defaultDatabase=5",
  35. "CachePrefix": "Admin:Cache",
  36. "AuthTicketPrefix": "Admin:Auth:Ticket",
  37. "DataProtectionKey": "Admin:DataProtection-Keys",
  38. "DefaultKeyLifetime": "90.00:00:00"
  39. },
  40. "SMTP": {
  41. "Host": "mail.bitforum.io",
  42. "Port": 465,
  43. "User": "admin@bitforum.io",
  44. "Password": "@@17125942KKh",
  45. "UseStartTls": true,
  46. "FromEmail": "admin@bitforum.io",
  47. "FromName": "DPOT"
  48. },
  49. "ForwardedHeaders": {
  50. "ForwardLimit": 5,
  51. "KnownProxies": [
  52. "192.168.0.100"
  53. ],
  54. "KnownNetworks": [
  55. "172.18.0.0/16",
  56. "192.168.0.0/24"
  57. ]
  58. }
  59. }