feat: add AlwaysIgnoreUrls for URL filtering; update README and release version to 1.3-01
Build and Release / release (push) Successful in 1m43s

This commit is contained in:
2026-06-12 10:31:40 +07:00
parent 5aac0d6297
commit 48f801e05b
6 changed files with 176 additions and 87 deletions
+5
View File
@@ -136,6 +136,11 @@ func main() {
return req, nil
}
if matchURL(path, AlwaysIgnoreUrls) {
zlog.Warn().Str("url", req.URL.String()).Msg("PASS URL")
return req, nil
}
if matchDomain(host, RedirectDomains) {
if matchURL(path, BlockUrls) {
full := req.URL.String()