Skip to content

Commit

Permalink
Change default gunicorn address (#1838)
Browse files Browse the repository at this point in the history
Use `0.0.0.0` as default instead of `127.0.0.1`
  • Loading branch information
Alexander Mancevice authored and mistercrunch committed Dec 15, 2016
1 parent 638f27c commit 6aaa49f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion superset/bin/superset
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 6aaa49f

Please sign in to comment.