From cafe282db5e59d90a8df4f6a159e5e21e9bb033d Mon Sep 17 00:00:00 2001 From: Aljaz Ceru Date: Sun, 5 Apr 2020 17:18:01 +0200 Subject: [PATCH] 0.0.0.0 bind for teos --- teos/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/teos/__init__.py b/teos/__init__.py index 707c7ec..ff1db3b 100644 --- a/teos/__init__.py +++ b/teos/__init__.py @@ -1,7 +1,7 @@ import os from teos.utils.auth_proxy import AuthServiceProxy -HOST = "localhost" +HOST = "0.0.0.0" PORT = 9814 DATA_DIR = os.path.expanduser("~/.teos/") CONF_FILE_NAME = "teos.conf"