appsettings.json 885 B

1234567891011121314151617181920212223242526272829303132
  1. {
  2. "Logging": {
  3. "LogLevel": {
  4. "Default": "Information",
  5. "Microsoft": "Warning",
  6. "Microsoft.Hosting.Lifetime": "Information"
  7. }
  8. },
  9. "AllowedHosts": "*",
  10. "DataStoreFilePath": "/var/jsonjumble/data",
  11. "AccountFilePath": "/var/jsonjumble/accounts",
  12. "RelativeStaticFilePath": "Static",
  13. "RelativeErrorFilePath": "ErrorPages",
  14. "UseHttps": false,
  15. "JwtSettings": {
  16. "SecretKey": "supersecretkeythatislongenoughtoprovidegoodsecurity",
  17. "ExpirationInHours": "720",
  18. "Issuer": "http://localhost:5000/",
  19. "Audience": "jsonjumble"
  20. },
  21. "AdminUsers": [
  22. { "Username": "admin", "Password": "5E884898DA28047151D0E56F8DC6292773603D0D6AABBDD62A11EF721D1542D8" }
  23. ],
  24. "RegisteredDomains": [
  25. "https://eyeofmidas.net",
  26. "http://eyeofmidas.net",
  27. "http://tddnetwork.org",
  28. "https://tddnetwork.org",
  29. "http://localhost",
  30. "https://localhost"
  31. ]
  32. }