From 94352a0eed6c4b137ea3a0b5f072c9c113f15a8c Mon Sep 17 00:00:00 2001 From: Philipp Klaus Date: Sun, 24 Sep 2017 17:05:05 +0800 Subject: [PATCH] DASH: serve on all ifaces by default (also /w --server paste) --- python_suite/dashboard/dashboard.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python_suite/dashboard/dashboard.py b/python_suite/dashboard/dashboard.py index 6ac803e..5e4ca9d 100755 --- a/python_suite/dashboard/dashboard.py +++ b/python_suite/dashboard/dashboard.py @@ -239,7 +239,7 @@ def main(): import argparse, sys parser = argparse.ArgumentParser() - parser.add_argument('--host', default='', + parser.add_argument('--host', default='0.0.0.0', help='The host (IP address) the web server should listen on.') parser.add_argument('--port', default=4913, help='The port the web server should listen on.') -- 2.43.0