1
0

appconfig.json 744 B

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. //Api地址
  3. "urls": [ "http://*:8000" ],
  4. //跨域地址
  5. "corUrls": [ "http://localhost:9000", "http://127.0.0.1:9000" ],
  6. //租户
  7. "Tenant": true,
  8. //Swagger文档
  9. "swagger": false,
  10. //统一认证授权服务器
  11. "IdentityServer": {
  12. //启用
  13. "enable": false,
  14. //地址,开发认证地址前往appconfig.Development.json修改
  15. "url": "https://login.zhontai.net"
  16. },
  17. //面向切面编程
  18. "aop": {
  19. //事物
  20. "transaction": true
  21. },
  22. //日志
  23. "log": {
  24. //操作日志
  25. "operation": true
  26. },
  27. //限流
  28. "rateLimit": false,
  29. //验证码
  30. "varifyCode": {
  31. //启用
  32. "enable": true,
  33. //字体列表
  34. "fonts": [ "Times New Roman", "Verdana", "Arial", "Gungsuh", "Impact" ]
  35. }
  36. }