From 04b1b3651e405727c2e5ce018ab02501d6bc821b Mon Sep 17 00:00:00 2001 From: justuser Date: Thu, 20 Jun 2024 21:01:46 +0300 Subject: [PATCH] =?UTF-8?q?=D0=97=D0=B0=D0=BC=D0=B5=D0=BD=D0=B0=20127.0.0.?= =?UTF-8?q?1=20=D0=BD=D0=B0=200.0.0.0,=20=D1=83=D0=B4=D0=BE=D0=B1=D0=BD?= =?UTF-8?q?=D0=B5=D0=B5=20=D0=B1=D0=BB=D0=BE=D0=BA=D0=B8=D1=80=D0=BE=D0=B2?= =?UTF-8?q?=D0=B0=D1=82=D1=8C=20=D1=81=D0=BA=D1=80=D0=B8=D0=BF=D1=82=D1=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- db.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/db.py b/db.py index 5288a01..d1c9ae4 100644 --- a/db.py +++ b/db.py @@ -2,7 +2,7 @@ import os import json if not os.path.exists('config.json'): - db = {"our_port": 0000, "ports": [], "domain": "http://127.0.0.1:8000"} + db = {"our_port": 0000, "ports": [], "domain": "http://0.0.0.0:8000"} js = json.dumps(db, indent=2) with open("config.json", "w") as outfile: outfile.write(js)