Change default gunicorn address (#1838)

Use `0.0.0.0` as default instead of `127.0.0.1`
This commit is contained in:
Alexander Mancevice 2016-12-14 19:34:35 -05:00 committed by Maxime Beauchemin
parent 638f27c2df
commit 6aaa49f0bf

View File

@ -43,7 +43,7 @@ def run_server():
'-d', '--debug', action='store_true',
help='Start the web server in debug mode')
gunicorn_parser.add_argument(
'-a', '--address', type=str, default='127.0.0.1',
'-a', '--address', type=str, default='0.0.0.0',
help='Specify the address to which to bind the web server')
gunicorn_parser.add_argument(
'-p', '--port', type=int, default=8088,