It would be great for quirky things (like WordPress) to be able to exclude/whitelist some path(s) in an ipfilter allow stanza, like so:
ipfilter /wp-admin {
if {path} not /wp-admin/admin-ajax.php
allow
ip ::1
strict
}
This example follows the syntax used by rewrite, minify, etc., but it could take other forms; possibly something like:
ipfilter {
regex /wp-admin(?!/admin-ajax\.php).*
allow
ip ::1
strict
}
It would be great for quirky things (like WordPress) to be able to exclude/whitelist some path(s) in an
ipfilterallow stanza, like so:This example follows the syntax used by
rewrite,minify, etc., but it could take other forms; possibly something like: