uswgi.ini 434 B

1234567891011121314151617181920212223
  1. # uwsgi.ini file
  2. [uwsgi]
  3. # Django-related settings
  4. socket = :8000
  5. # the base directory (full path)
  6. chdir = /data/souce_code/produce/JointDebug/WTOAAM/wtoaamapi
  7. # Django s wsgi file
  8. module = wtoaamapi.wsgi
  9. buffer-size = 65536
  10. # process-related settings
  11. master = true
  12. # maximum number of worker processes
  13. processes = 5
  14. # maximum number of worker threads
  15. threads = 5
  16. # try to remove all of the generated file/sockets
  17. vacuum = true