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:
@ -35,7 +35,7 @@
|
||||
},
|
||||
{
|
||||
"type": "string",
|
||||
"pattern": "^any$"
|
||||
"pattern": "^all$"
|
||||
}
|
||||
]
|
||||
},
|
||||
|
Reference in New Issue
Block a user