config.default.json 699 B

123456789101112131415161718192021222324252627282930313233
  1. {
  2. "frontend":{
  3. "enable": true,
  4. "entry": "zDWSIFrontend",
  5. "shell_log":{
  6. "file": "/data/logs/frontend.shell.log",
  7. "max_size": 16,
  8. "max_age": 30,
  9. "max_backups": 50,
  10. "use_local_time": true,
  11. "compress_history": true
  12. },
  13. "listen": ":8080",
  14. "wwwroot": "/data/wwwroot/",
  15. "backend_proxy":{
  16. "prefix": "api",
  17. "target": "localhost:9090"
  18. }
  19. },
  20. "backend":{
  21. "enable": false,
  22. "entry": "Backend",
  23. "listen": ":9090",
  24. "shell_log":{
  25. "file": "/data/logs/backend.shell.log",
  26. "max_size": 16,
  27. "max_age": 30,
  28. "max_backups": 50,
  29. "use_local_time": true,
  30. "compress_history": true
  31. }
  32. }
  33. }