wiki:AdGuardHome

Version 2 (modified by krit, 2 days ago) (diff)

--

AdGuard Home

Custom filter block

!||x.ai^
!||grok.com^
!||chatgpt.com^
!||gemini.google.com^
!||deepseek.com^
!||claude.ai^
!||chat.chatbotapp.ai^
!||chatbotai.com^
!||chat.chatbot.app^
!/^.*chat.*$/
!-------------- Meaning of /^.*chat.*$/ how to it ---------------------------- 
!/.../	Delimiters used by AdGuard Home to recognize this as a regex pattern.
!^	Anchors the match to the start of the string (the domain name).
!.*	Match zero or more of any character (except newline).
!chat	The literal string "chat" anywhere in the domain.
!.*	Again match zero or more of any character after "chat".
!$	Anchors the match to the end of the string.
!------------------------------------------------------------------------------
!---------------- ||deepseek.com^ ---------------------------------------------
!|| = any subdomain,
!^ = domain boundary (so it blocks deepseek.com but not notdeepseek.com)
!-------------------------------------------------------------------------------