File tree 1 file changed +6
-1
lines changed
1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -50,7 +50,12 @@ frontend docker_engine
50
50
http-request allow if { path,url_dec -m reg -i ^(/v[\d\.]+)?/containers/nc_app_[a-zA-Z0-9_.-]+/((start)|(stop)) } METH_POST
51
51
# container rm: DELETE containers/%s
52
52
http-request allow if { path,url_dec -m reg -i ^(/v[\d\.]+)?/containers/nc_app_[a-zA-Z0-9_.-]+ } METH_DELETE
53
-
53
+ # container update/exec: POST containers/%s/update containers/%s/exec
54
+ http-request allow if { path,url_dec -m reg -i ^(/v[\d\.]+)?/containers/nc_app_[a-zA-Z0-9_.-]+/((update)|(exec)) } METH_POST
55
+ # container put: PUT containers/%s/archive
56
+ http-request allow if { path,url_dec -m reg -i ^(/v[\d\.]+)?/containers/nc_app_[a-zA-Z0-9_.-]+/archive } METH_PUT
57
+ # run exec instance: POST exec/%s
58
+ http-request allow if { path,url_dec -m reg -i ^(/v[\d\.]+)?/exec/[a-zA-Z0-9_.-]+/start } METH_POST
54
59
55
60
# container create: POST containers/create?name=%s
56
61
# ACL to restrict container name to nc_app_[a-zA-Z0-9_.-]+
You can’t perform that action at this time.
0 commit comments