Fix address validation rule to allow 'all' keyword

The rule was looking for the keyword 'any' but should have been looking for 'all' 

http://nginx.org/en/docs/http/ngx_http_access_module.html
This commit is contained in:
Kyle Klaus 2020-05-09 09:31:58 -07:00 committed by GitHub
parent 64922f07ff
commit 96c5c79aef
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -35,7 +35,7 @@
},
{
"type": "string",
"pattern": "^any$"
"pattern": "^all$"
}
]
},