Amazon web services AWS WAFV2:允许访问特定URI路径的ACL规则

Amazon web services AWS WAFV2:允许访问特定URI路径的ACL规则,amazon-web-services,acl,firewall,pusher,amazon-waf,Amazon Web Services,Acl,Firewall,Pusher,Amazon Waf,我在AWS ELB中有一些web acl管理的规则,这些规则阻止了来自Pusher api的Webhook。他们没有提供我可以包含在白名单中的IP列表。我正试图创建自己的规则来允许访问这个特定的URI/assets/libs/pusher\u webhook\u presence.php,但它不起作用,并且一直被AWS\AWSManagedRulesAnonymousIpList\hostingProviderPlist阻止 应允许该uri的Acl规则: { "Name": "Allow_P

我在AWS ELB中有一些web acl管理的规则,这些规则阻止了来自Pusher api的Webhook。他们没有提供我可以包含在白名单中的IP列表。我正试图创建自己的规则来允许访问这个特定的URI/assets/libs/pusher\u webhook\u presence.php,但它不起作用,并且一直被AWS\AWSManagedRulesAnonymousIpList\hostingProviderPlist阻止

应允许该uri的Acl规则:

{
  "Name": "Allow_Pusher_Webhooks",
  "Priority": 4,
  "Action": {
    "Block": {}
  },
  "VisibilityConfig": {
    "SampledRequestsEnabled": true,
    "CloudWatchMetricsEnabled": true,
    "MetricName": "Allow_Pusher_Webhooks"
  },
  "Statement": {
    "ByteMatchStatement": {
      "FieldToMatch": {
        "UriPath": {}
      },
      "PositionalConstraint": "EXACTLY",
      "SearchString": "/assets/libs/pusher_webhook_presence.php",
      "TextTransformations": [
        {
          "Type": "NONE",
          "Priority": 0
        }
      ]
    }
  }
}
我的web acl具有的托管规则列表:

Allow_Pusher_Webhooks ( Priority 0 )
AWS-AWSManagedRulesAmazonIpReputationList   
AWS-AWSManagedRulesAdminProtectionRuleSet   
AWS-AWSManagedRulesCommonRuleSet    
AWS-AWSManagedRulesAnonymousIpList
我尝试将它的优先级设置为0,所以一开始会对它进行测试,但没有成功。我做错了什么或错过了什么