appsettings.json 832 B

123456789101112131415161718192021222324252627282930313233
  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. "Logging": {
  4. "LogLevel": {
  5. "Default": "Information",
  6. "Microsoft.AspNetCore": "Warning"
  7. }
  8. },
  9. "AllowedHosts": "*",
  10. "Jwt": {
  11. "Key": "EsimLaoSecretKey12345678901234567890",
  12. "Issuer": "EsimLao",
  13. "Audience": "EsimLaoClient"
  14. },
  15. "Email": {
  16. "SmtpServer": "smtp.gmail.com",
  17. "SmtpPort": 587,
  18. "SenderEmail": "your-email@gmail.com",
  19. "SenderName": "EsimLao",
  20. "SenderPassword": "your-app-password",
  21. "EnableSsl": true
  22. },
  23. "MessageQueueJob": {
  24. "IntervalSeconds": 30
  25. },
  26. "Kestrel": {
  27. "EndPoints": {
  28. "Http": {
  29. "Url": "http://0.0.0.0:9106"
  30. }
  31. }
  32. }
  33. }