and so it begins
This commit is contained in:
commit
4d1b70940e
10 changed files with 282 additions and 0 deletions
27
uwsgi_note.ini
Normal file
27
uwsgi_note.ini
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
# # mysite_uwsgi.ini file
|
||||
[uwsgi]
|
||||
uid = www-data
|
||||
gid = www-data
|
||||
# Django-related settings
|
||||
# the base directory (full path)
|
||||
chdir = /var/www/note_kfet
|
||||
# Django's wsgi file
|
||||
#module = winaps.wsgi:application
|
||||
# the virtualenv (full path)
|
||||
home = /var/www/note_kfet/env
|
||||
wsgi-file = /var/www/note_kfet/note_kfet/wsgi.py
|
||||
plugin = python3
|
||||
# process-related settings
|
||||
# master
|
||||
master = true
|
||||
# maximum number of worker processes
|
||||
processes = 10
|
||||
# the socket (use the full path to be safe
|
||||
socket = /var/www/note_kfet/note_kfet.sock
|
||||
# ... with appropriate permissions - may be needed
|
||||
chmod-socket = 664
|
||||
# clear environment on exit
|
||||
vacuum = true
|
||||
#Touch reload
|
||||
touch-reload = /var/www/note_kfet/note_kfet/settings.py
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue