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.

26 lines
662 B

# tibia_uwsgi.ini file
[uwsgi]
# Django-related settings
# the base directory (full path)
chdir = /home/gesche/coding/tibia-website/tibia_website/
# Django's wsgi file
module = tibia_website.wsgi
# the virtualenv (full path)
home = /home/gesche/coding/virtual-envs/tibia-env
# process-related settings
# master
master = true
# maximum number of worker processes
processes = 10
# the socket (use the full path to be safe
socket = /home/gesche/tibia.sock
# ... with appropriate permissions - may be needed
# chmod-socket = 664
# clear environment on exit
vacuum = true
plugin = python3