diff --git a/script/hosts.py b/script/hosts.py index 81dbbba..a90430b 100755 --- a/script/hosts.py +++ b/script/hosts.py @@ -2,7 +2,7 @@ def format_domain(List): domain = ["127.0.0.1 localhost", "::1 localhost", "", ""] for line in List: - domain_lines = f"127.0.0.1 {line.strip()}" + domain_lines = f"0.0.0.0 {line.strip()}" domain.append(domain_lines) return domain