Global whitelist support? #490
Replies: 3 comments 5 replies
-
This is actually the way how it works. You can define different groups for blocking and a whitelist to "override"/"disable" of some blocking entries. If you have 3 groups and you want to reuse a whitelist for all three, I think there is currently no way to achieve it without defining 3 whitelists with corresponding names. |
Beta Was this translation helpful? Give feedback.
-
You should be able to use YAML anchors for this. In this example, b will have the same contents as a when parsed: a: &anchor
x: y
b:
<<: *anchor |
Beta Was this translation helpful? Give feedback.
-
YAML anchor could be a working approach here, though sometimes not so easy to read or maintain it 😅 |
Beta Was this translation helpful? Give feedback.
-
Not sure if I understand correctly.
Currently, if I have three blacklist groups, name
ads
,phishing
&parking-domain
, and I only have one whitelist group, calledsafelist
, I want to make sure that all the hosts in thesafelist
will not be blocked, then I can't name the whitelist groupsafelist
, instead, I need to duplicate the group three times, and named themads
,phishing
&parking-domain
accordingly, am I right?Using a different name for the whitelist will have the result that the document mentioned:
Is it possible that we can have a more efficient way to maintain the whitelist group? Or I'm using it the wrong way? Thanks a lot!
Beta Was this translation helpful? Give feedback.
All reactions