config.json.tmpl 695 B

123456789101112131415161718192021222324252627282930313233
  1. {
  2. "applications" : {
  3. "tcms" : {
  4. "group" : "__USER__",
  5. "script" : "__WD__/www/server.psgi",
  6. "type" : "perl",
  7. "user" : "__USER__",
  8. "working_directory" : "__WD__",
  9. "environment": {
  10. "PSGI_ENGINE":"nginx-unit"
  11. },
  12. "limits": {
  13. "requests": 1000
  14. },
  15. "processes": {
  16. "spare": 5,
  17. "max": 20,
  18. "idle_timeout": 30
  19. }
  20. }
  21. },
  22. "listeners" : {
  23. "*:5001" : {
  24. "pass" : "applications/tcms"
  25. }
  26. },
  27. "settings" : {
  28. "http" : {
  29. "body_read_timeout" : 60,
  30. "max_body_size" : 85899345920
  31. }
  32. }
  33. }