appsettings.json 640 B

123456789101112131415161718192021222324
  1. {
  2. "Connection": "Data Source=(DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=127.0.0.1)(PORT=1539))(CONNECT_DATA=(SERVICE_NAME=ORA12C)));User Id=sicbo;Password=qwK99QfuhEmcFE;Connection Timeout=120;",
  3. "Kestrel": {
  4. "EndPoints": {
  5. "Http": {
  6. "Url": "http://0.0.0.0:9106"
  7. }
  8. //"Https": {
  9. // "Url": "https://0.0.0.0:9107",
  10. // "Certificate": {
  11. // "Path": "/path/to/certificate.pfx",
  12. // "Password": "your-password"
  13. // }
  14. //}
  15. }
  16. },
  17. "Logging": {
  18. "LogLevel": {
  19. "Default": "Information",
  20. "Microsoft.AspNetCore": "Warning"
  21. }
  22. },
  23. "AllowedHosts": "*"
  24. }