This commit is contained in:
relikd
2023-05-29 15:20:07 +02:00
commit 1380b156d8
126 changed files with 3612 additions and 0 deletions

23
docker/app/uwsgi.ini Executable file
View File

@@ -0,0 +1,23 @@
[uwsgi]
# Django-related settings
# the base directory (full path)
chdir = /django_project
# Django's wsgi file
module = config.wsgi
# process-related settings
# master
master = true
# maximum number of worker processes
processes = 8
# the socket (use the full path to be safe)
socket = :8888
# ... with appropriate permissions - may be needed
# chmod-socket = 664
# clear environment on exit
vacuum = true
# DO NOT USE IN PRODUCTION
# py-autoreload = 2