10 lines
187 B
Bash
10 lines
187 B
Bash
|
#! /bin/bash
|
||
|
|
||
|
/usr/local/nginx/sbin/nginx -c /conf/nginx-enterprise.conf
|
||
|
venv/bin/gunicorn -c conf/gunicorn_config.py application:application
|
||
|
|
||
|
while true
|
||
|
do
|
||
|
sleep 60
|
||
|
echo "stuff"
|
||
|
done
|