mirror of
https://git.wownero.com/lza_menace/wowstash.git
synced 2024-08-15 00:33:15 +00:00
bind flask to localhost
This commit is contained in:
parent
fbc8917a7b
commit
abcf5b5dd9
1 changed files with 5 additions and 1 deletions
6
bin/prod
6
bin/prod
|
@ -10,12 +10,16 @@ export FLASK_ENV=production
|
||||||
|
|
||||||
mkdir -p $BASE
|
mkdir -p $BASE
|
||||||
|
|
||||||
|
kill $(cat $BASE/gunicorn.pid) 2>&1
|
||||||
|
|
||||||
gunicorn \
|
gunicorn \
|
||||||
--bind 0.0.0.0:4001 "wowstash.app:app" \
|
--bind 127.0.0.1:4001 "wowstash.app:app" \
|
||||||
--daemon \
|
--daemon \
|
||||||
--log-file $BASE/gunicorn.log \
|
--log-file $BASE/gunicorn.log \
|
||||||
--pid $BASE/gunicorn.pid \
|
--pid $BASE/gunicorn.pid \
|
||||||
--access-logfile $BASE/access.log \
|
--access-logfile $BASE/access.log \
|
||||||
--reload
|
--reload
|
||||||
|
|
||||||
|
sleep 1
|
||||||
|
|
||||||
echo "Starting gunicorn with pid $(cat $BASE/gunicorn.pid)"
|
echo "Starting gunicorn with pid $(cat $BASE/gunicorn.pid)"
|
||||||
|
|
Loading…
Reference in a new issue