e2guardian/sslsiteregexplist

30 lines
1.2 KiB
Plaintext
Raw Normal View History

2023-12-17 11:16:35 -05:00
#SSL site modifying Regular Expressions
#
# The format is: "extended regular expression"->"replacement straight string"
# E.g. "shit"->"censored" would replace all occurances of shit in any case.
# Far more complicated matches are possible. See other sources for examples
# of extended regular expressions.
#
# Users are pointed at the replaced site transparently.
# This is used to 'cname' ssl sites and avoids having to adjust DNS
# and allows option of switching off/on depending on filter group.
# This list applies to the site only (not full URL) for
# HTTPS sites (regardless of SSL MITM configuration).
# Do not use patterns with full urls in this list as they can never
# match the site name.
# Enforce restricted mode in YouTube
#
#"(^https://www.youtube.com)"->"https://restrict.youtube.com"
#"(^https://m.youtube.com)"->"https://restrict.youtube.com"
#"(^https://youtubei.googleapis.com)"->"https://restrict.youtube.com"
#"(^https://youtube.googleapis.com)"->"https://restrict.youtube.com"
#"(^https://www.youtube-nocookie.com)"->"https://restrict.youtube.com"
#
# Enforce restricted mode in Google
#
#"(^https://www\.google\.[a-zA-Z0-9_.]*$)"->"https://forcesafesearch.google.com"
#"(^https://.*\.gstatic\.com$)"->"https://forcesafesearch.google.com"