seperate out gunicorn sockets
This commit is contained in:
parent
1be40b5426
commit
5670dcd446
|
@ -0,0 +1,5 @@
|
||||||
|
#!/bin/sh
|
||||||
|
python /app/manage.py collectstatic --noinput
|
||||||
|
python /app/manage.py compilescss
|
||||||
|
|
||||||
|
/usr/local/bin/gunicorn config.wsgi -w 4 -b unix:/data/sockets/live-gunicorn-mhackspace.sock --error-logfile /var/log/gunicorn/live-gunicorn-mhackspace.log --chdir=/app
|
|
@ -0,0 +1,5 @@
|
||||||
|
#!/bin/sh
|
||||||
|
python /app/manage.py collectstatic --noinput
|
||||||
|
python /app/manage.py compilescss
|
||||||
|
|
||||||
|
/usr/local/bin/gunicorn config.wsgi -w 4 -b unix:/data/sockets/stage-gunicorn-mhackpace.sock --error-logfile /var/log/gunicorn/stage-gunicorn-mhackspace.log --chdir=/app
|
Loading…
Reference in New Issue