host config fix

This commit is contained in:
AF 2021-11-27 18:31:32 +03:00
parent 2d955db44b
commit 3024412c8c

View File

@ -7,6 +7,6 @@ _root = Path(os.getenv('v6root', './data'))
assert _root.exists()
myroot = _root / 'v6d0auth'
myroot.mkdir(exist_ok=True)
host = os.getenv('v6port', '127.0.0.1')
host = os.getenv('v6host', '127.0.0.1')
port = int(os.getenv('v6port', '5003'))
cakey = bytes.fromhex(os.getenv('v6ca', ''))