Skip to content

Commit 50e29b1

Browse files
More constraints on IP like strings to prevent Chrome versions from being excluded
1 parent a6084e6 commit 50e29b1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

relay.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,15 +34,15 @@ block-content:
3434
# body:
3535
# - exclude: '\$[0-9]+(\.[0-9][0-9])?' # Dollar quantities
3636
# - exclude: 'EXCLUDE ME'
37-
# - mask: '[0-9]+\.[0-9]+\.[0-9]+\.[0-9]+' # IP-like strings
37+
# - mask: '[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}' # IP-like strings
3838
# - mask: 'MASK ME'
3939
body:
4040

4141
# The 'header' option works just like 'body', but it applies to header values
4242
# instead.
4343
# Example:
4444
# header:
45-
# - exclude: '[0-9]+\.[0-9]+\.[0-9]+\.[0-9]+' # IP-like strings
45+
# - exclude: '[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}' # IP-like strings
4646
header:
4747

4848
# You can also define block rules using environment variables.

0 commit comments

Comments
 (0)