From 4b53c8a5967badd61ae354e8ec10d62cab42c630 Mon Sep 17 00:00:00 2001 From: tituspijean Date: Fri, 29 Sep 2023 00:36:46 +0200 Subject: [PATCH] Add home.arpa as special TLD --- 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..1caac9dcd 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"]