1
0
mirror of https://github.com/GNS3/gns3-server synced 2024-12-26 00:38:10 +00:00

Server listen to 0.0.0.0 by default.

This commit is contained in:
Jeremy 2015-02-09 13:42:50 -07:00
parent 30c452e938
commit 648850c411

View File

@ -82,7 +82,7 @@ def parse_arguments(argv, config):
""" """
defaults = { defaults = {
"host": config.get("host", "127.0.0.1"), "host": config.get("host", "0.0.0.0"),
"port": config.get("port", 8000), "port": config.get("port", 8000),
"ssl": config.getboolean("ssl", False), "ssl": config.getboolean("ssl", False),
"certfile": config.get("certfile", ""), "certfile": config.get("certfile", ""),