config.json.tmpl 684 B

1234567891011121314151617181920212223242526272829303132
  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. "processes": {
  15. "spare": 5,
  16. "max": 100,
  17. "idle_timeout": 30
  18. }
  19. }
  20. },
  21. "listeners" : {
  22. "*:5001" : {
  23. "pass" : "applications/tcms"
  24. }
  25. },
  26. "settings" : {
  27. "http" : {
  28. "body_read_timeout" : 60,
  29. "max_body_size" : 85899345920
  30. }
  31. }
  32. }