tcms.ini 317 B

123456789101112131415161718
  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. # Reporting
  9. memory-report = 1
  10. # TODO figure out why things break without this
  11. lazy-apps = 1
  12. # TODO use mount options to do virtual hosting
  13. psgi = www/server.psgi
  14. perl-auto-reload = 1