appsettings.json 904 B

12345678910111213141516171819202122232425262728293031323334
  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": "smtp.gmail.com",
  5. "SmtpPort": 587,
  6. "SenderEmail": "trongduc02@gmail.com",
  7. "SenderName": "trongduc02",
  8. "SenderPassword": "cjav iour aepq balt",
  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. "Logging": {
  22. "LogLevel": {
  23. "Default": "Information",
  24. "Microsoft.Hosting.Lifetime": "Information"
  25. }
  26. },
  27. "Kestrel": {
  28. "EndPoints": {
  29. "Http": {
  30. "Url": "http://0.0.0.0:8361"
  31. }
  32. }
  33. }
  34. }