only bind local port

This commit is contained in:
lza_menace 2021-05-07 21:39:12 -07:00
parent 00a97eb686
commit 2a7c618e9d
1 changed files with 1 additions and 1 deletions

View File

@ -11,7 +11,7 @@ export FLASK_ENV=production
mkdir -p $BASE
gunicorn \
--bind 0.0.0.0:4000 "suchwow.app:app" \
--bind 127.0.0.1:4000 "suchwow.app:app" \
--daemon \
--log-file $BASE/gunicorn.log \
--pid $BASE/gunicorn.pid \