Last active
December 1, 2023 15:17
-
-
Save radiosilence/5714387 to your computer and use it in GitHub Desktop.
Example uWSGi INI file with support for celery.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[uwsgi] | |
disable-logging = True | |
socket = /srv/qrs/test/wsgi.sock | |
chdir = /srv/qrs/test | |
chmod = 660 | |
master = true | |
processes = 2 | |
module = qrs.wsgi:application | |
virtualenv = /env/qrs/test | |
enable-threads = true | |
threads = 4 | |
attach-daemon = /env/qrs/test/bin/python manage.py celery worker -B --settings=qrs.settings.celery_development |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment