You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
386 B

# myweb_uwsgi.ini file
[uwsgi]
# Django-related settings
socket = :0000
# the base directory (full path)
chdir = /www
# Django s wsgi file
module = HelloWorld.wsgi
# process-related settings
# master
master = true
# maximum number of worker processes
processes = 4
# ... with appropriate permissions - may be needed
# chmod-socket = 664
# clear environment on exit
vacuum = true