bind flask to localhost

This commit is contained in:
lza_menace 2021-05-17 12:58:22 -07:00
parent fbc8917a7b
commit abcf5b5dd9
1 changed files with 5 additions and 1 deletions

View File

@ -10,12 +10,16 @@ export FLASK_ENV=production
mkdir -p $BASE
kill $(cat $BASE/gunicorn.pid) 2>&1
gunicorn \
--bind 0.0.0.0:4001 "wowstash.app:app" \
--bind 127.0.0.1:4001 "wowstash.app:app" \
--daemon \
--log-file $BASE/gunicorn.log \
--pid $BASE/gunicorn.pid \
--access-logfile $BASE/access.log \
--reload
sleep 1
echo "Starting gunicorn with pid $(cat $BASE/gunicorn.pid)"