mirror of https://github.com/sipwise/repoapi.git
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.
30 lines
751 B
30 lines
751 B
[uwsgi]
|
|
|
|
# Django-related settings
|
|
# django 1.11 needs python >= 2.7, though it's the latest LTS release to support python2 at all
|
|
plugin = python3
|
|
# the base directory (full path)
|
|
chdir = /usr/share/repoapi
|
|
# Django's wsgi file
|
|
module = repoapi.wsgi:application
|
|
# the virtualenv (full path)
|
|
home = /var/lib/repoapi/venv_prod
|
|
# django setting
|
|
env = DJANGO_SETTINGS_MODULE=repoapi.settings.prod
|
|
# spawn 10 uWSGI worker processes
|
|
workers = 10
|
|
|
|
# Better process names
|
|
auto-procname = true
|
|
procname-prefix-spaced = [%n]
|
|
|
|
# improve behavior esp with systemd
|
|
die-on-term = true
|
|
|
|
# improve runtime behavior
|
|
enable-threads = true
|
|
thunder-lock = true
|
|
|
|
# avoid plugin autoloading problems (cmdline argument magic)
|
|
autoload = false
|