From dee7c2bb67b260e7f873146d9958c7b403937535 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20K=C3=B6nig?= Date: Fri, 19 Jan 2024 22:21:37 +0100 Subject: [PATCH] Add regex hint to domain/client exclusion box MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Christian König --- settings-api.lp | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) diff --git a/settings-api.lp b/settings-api.lp index 6448ddf94..ace817d38 100644 --- a/settings-api.lp +++ b/settings-api.lp @@ -24,14 +24,19 @@ mg.include('scripts/pi-hole/lua/settings_header.lp','r')
-

Domains to be excluded from Top Domains / Ads Lists

- -

Domains may be described by their domain name (like example.com)

+

Domains to be excluded from Top Domain Lists and Query Log

+ +

Domains may be described by their domain name (like ^example\.com$)

-

Clients to be excluded from Top Clients List

- -

Clients may be described either by their IP addresses (IPv4 and IPv6 are supported), or hostnames (like laptop.lan).

+

Clients to be excluded from Top Client Lists and Query Log

+ +

Clients may be described either by their IP addresses (IPv4 and IPv6 are supported), or hostnames (like ^laptop\.lan$).

+
+
+
+
+

Important: Those input fields accept regex entries only. Please refer to our guide how to construct valid regex entries.