chg: BGP Ranking webserver should listen on 0.0.0.0

pull/12/head
Raphaël Vinot 2018-11-28 11:50:06 +01:00
parent 4583228325
commit 0fed442b1d
1 changed files with 1 additions and 1 deletions

View File

@ -4,6 +4,6 @@ Install the dependencies, run
```bash
export FLASK_APP=${BGPRANKING_HOME}/website/web/__init__.py
gunicorn --worker-class gevent -w 10 -b 127.0.0.1:5005 web:app
gunicorn --worker-class gevent -w 10 -b 0.0.0.0:5005 web:app
```