Added example for uwsgi and updated requirements

This commit is contained in:
Sebastian 2017-05-19 18:51:53 +02:00
parent 349b3a0d89
commit b7ace57996
2 changed files with 20 additions and 3 deletions

View File

@ -1,5 +1,5 @@
appdirs==1.4.3
Django==1.10.6
appdirs==1.4.0
Django==1.10.5
django-autocomplete-light==3.2.7
django-stdimage==2.4.1
django-taggit==0.22.0
@ -8,6 +8,7 @@ olefile==0.44
packaging==16.8
Pillow==4.0.0
progressbar2==3.20.0
pyparsing==2.2.0
pyparsing==2.1.10
python-utils==2.1.0
six==1.10.0
uWSGI==2.0.15

16
uwsgi_example.ini Normal file
View File

@ -0,0 +1,16 @@
[uwsgi]
chdir=<path_to_romstore>/
home=<path_to_romsotre>/virtenv
module=gulaschromstore.wsgi:application
master=True
socket=gulasch.sock
processes=5
uid=1000
gid=100
harakiri=20
max-requests=5000
pidfile=/tmp/gulaschromstore-master.pid
vacuum=True
max-requests=5000
daemonize=/var/log/uwsgi/gulaschromstore.log
env = LANG=de_DE.UTF-8