mirror of
https://github.com/GNS3/gns3-server.git
synced 2024-12-19 04:47:54 +00:00
Set default host to "localhost". Fixes https://github.com/GNS3/gns3-server/issues/1663
This commit is contained in:
parent
6ae7ef8a2e
commit
2d777cac13
@ -116,7 +116,7 @@ def parse_arguments(argv):
|
||||
|
||||
config = Config.instance().get_section_config("Server")
|
||||
defaults = {
|
||||
"host": config.get("host", "0.0.0.0"),
|
||||
"host": config.get("host", "localhost"),
|
||||
"port": config.get("port", 3080),
|
||||
"ssl": config.getboolean("ssl", False),
|
||||
"certfile": config.get("certfile", ""),
|
||||
|
Loading…
Reference in New Issue
Block a user