From bb097fedca2db668cbc8cc490887048478c86362 Mon Sep 17 00:00:00 2001 From: tituspijean Date: Fri, 29 Sep 2023 12:05:48 +0200 Subject: [PATCH] Add home.arpa as special TLD (#1718) * Add home.arpa as special TLD * Update dns.py --- src/utils/dns.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/dns.py b/src/utils/dns.py index b3ca4b564..569dad466 100644 --- a/src/utils/dns.py +++ b/src/utils/dns.py @@ -21,7 +21,7 @@ from typing import List from moulinette.utils.filesystem import read_file -SPECIAL_USE_TLDS = ["local", "localhost", "onion", "test"] +SPECIAL_USE_TLDS = ["home.arpa", "local", "localhost", "onion", "test"] YNH_DYNDNS_DOMAINS = ["nohost.me", "noho.st", "ynh.fr"]