appsettings.Production.json 1.8 KB

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