appsettings.json 793 B

1234567891011121314151617181920212223242526272829
  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": "EsimLaoSecretKey1234567890ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789ABCD",
  12. "Issuer": "EsimLao",
  13. "Audience": "EsimLaoClient"
  14. },
  15. "Kestrel": {
  16. "EndPoints": {
  17. "Http": {
  18. "Url": "http://0.0.0.0:9106"
  19. }
  20. //"Https": {
  21. // "Url": "https://0.0.0.0:9107",
  22. // "Certificate": {
  23. // "Path": "/path/to/certificate.pfx",
  24. // "Password": "your-password"
  25. // }
  26. //}
  27. }
  28. }
  29. }