Explorar el Código

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
Kyle Klaus hace 5 años
padre
commit
96c5c79aef
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      backend/schema/endpoints/access-lists.json

+ 1 - 1
backend/schema/endpoints/access-lists.json

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