appsettings.json 866 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. {
  2. "Logging": {
  3. "LogLevel": {
  4. "Default": "Information",
  5. "Microsoft.AspNetCore": "Warning",
  6. "Microsoft": "Warning",
  7. "Microsoft.Hosting.Lifetime": "Information"
  8. },
  9. "File": {
  10. "Path": "Logs/app-.log",
  11. "Append": true,
  12. "MaxFileSize": 20971520,
  13. "MaxRollingFiles": 10
  14. }
  15. },
  16. "AllowedHosts": "*",
  17. "Kestrel": {
  18. "Endpoints": {
  19. "Https1": {
  20. "Url": "https://*:8326",
  21. "Certificate": {
  22. "Path": "Configs/cer/cert.pem",
  23. "KeyPath": "Configs/cer/key.pem"
  24. }
  25. }
  26. }
  27. },
  28. "ExamServer": {
  29. "Timeout": 30000,
  30. "Delay": 500,
  31. "CenterUrl": "https://www.teammodel.cn",
  32. "NotifyUrl": "https://www.winteach.cn",
  33. "MusicUrl": "https://musicapi.winteach.cn/api/v1"
  34. },
  35. "ExamClient": {
  36. "Domain": "habook.local"
  37. },
  38. "Version": "1.250205.01"
  39. }