mirror of
https://github.com/frappe/gunicorn.git
synced 2026-01-14 02:49:12 +08:00
fixed syntax error in examples/gunicorn_rc.
This commit is contained in:
parent
5eff21ff0f
commit
b054b7e91c
@ -6,7 +6,7 @@ PID=/var/run/gunicorn.pid
|
||||
|
||||
APP=main:application
|
||||
|
||||
if [ -f $PID ]; then rm $PID fi
|
||||
if [ -f $PID ]; then rm $PID; fi
|
||||
|
||||
cd $ROOT
|
||||
exec $GUNICORN -c $ROOT/gunicorn.conf.py --pidfile=$PID $APP
|
||||
exec $GUNICORN -c $ROOT/gunicorn.conf.py --pid=$PID $APP
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user