Files
loc_az_hci/config/cloudflare/waf-rules.yaml
defiQUG c39465c2bd
Some checks failed
Test / test (push) Has been cancelled
Initial commit: loc_az_hci (smom-dbis-138 excluded via .gitignore)
Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-08 09:04:46 -08:00

17 lines
453 B
YAML

# WAF Rule Definitions
waf_rules:
- name: "Block Common Attacks"
expression: "(http.request.uri.path contains \"/wp-admin\" or http.request.uri.path contains \"/phpmyadmin\")"
action: "block"
- name: "Rate Limiting"
expression: "(rate(10m) > 100)"
action: "challenge"
- name: "Geographic Restrictions"
expression: "(ip.geoip.country ne \"US\" and ip.geoip.country ne \"CA\")"
action: "block"
enabled: false