appsettings.json 912 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. {
  2. "Connection": "Data Source=(DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=127.0.0.1)(PORT=1539))(CONNECT_DATA=(SERVICE_NAME=ORA12C)));User Id=laos_esim;Password=laos_esim;Connection Timeout=120;",
  3. "Email": {
  4. "SmtpServer": "",
  5. "SmtpPort": 587,
  6. "SenderEmail": "",
  7. "SenderName": "",
  8. "SenderPassword": "",
  9. "EnableSsl": true,
  10. "MaxConcurrentSends": 10,
  11. "ConnectionPoolSize": 5,
  12. "MaxEmailsPerMinute": 30,
  13. "BaseRetryDelayMs": 2000,
  14. "MaxRetryDelayMs": 60000
  15. },
  16. "Job": {
  17. "IntervalSeconds": 10,
  18. "MaxMessagesPerRun": 500,
  19. "MetricsLogIntervalSeconds": 60
  20. },
  21. "Cleanup": {
  22. "IntervalMinutes": 60,
  23. "ExpirationDays": 1
  24. },
  25. "Logging": {
  26. "LogLevel": {
  27. "Default": "Information",
  28. "Microsoft.Hosting.Lifetime": "Information"
  29. }
  30. },
  31. "Kestrel": {
  32. "EndPoints": {
  33. "Http": {
  34. "Url": "http://0.0.0.0:8361"
  35. }
  36. }
  37. }
  38. }