Move the pid files inside the container so they don't conflict.
This commit is contained in:
parent
91c1342ffb
commit
9e88414773
3 changed files with 5 additions and 2 deletions
|
@ -2,7 +2,7 @@ bind = 'unix:/tmp/gunicorn.sock'
|
|||
workers = 8
|
||||
worker_class = 'gevent'
|
||||
timeout = 2000
|
||||
pidfile = '/mnt/logs/gunicorn.pid'
|
||||
pidfile = '/tmp/gunicorn.pid'
|
||||
errorlog = '/mnt/logs/application.log'
|
||||
loglevel = 'debug'
|
||||
logger_class = 'util.glogger.LogstashLogger'
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
pid /mnt/logs/nginx.pid;
|
||||
pid /tmp/nginx.pid;
|
||||
error_log /mnt/logs/nginx.error.log;
|
||||
|
||||
events {
|
||||
|
|
Reference in a new issue