tcms.ini 406 B

12345678910111213141516171819202122
  1. # default uWSGI configuration file for tCMS
  2. [uwsgi]
  3. master = 1
  4. processes = 5
  5. http-socket = :5000
  6. plugin = psgi
  7. socket = tcms.sock
  8. thunder-lock = 1
  9. # Speed up reloads, don't run 2 instances or you'll die
  10. reuse-port = 1
  11. # Reporting
  12. memory-report = 1
  13. # TODO figure out why things break without this
  14. lazy-apps = 1
  15. # TODO use mount options to do virtual hosting
  16. psgi = www/server.psgi
  17. perl-auto-reload = 1