Reference
del acl
Delete a single value from an ACL expression or file.
Description Jump to heading
An ACL is split into four parts:
- a name for the ACL, which you choose
- a fetch to collect information from the client’s session
- optional flags
- a value to match against
In the example below, we mark these parts:
haproxy
frontend wwwbind :80# name fetch flags valueacl static_url path -i -m beg /images/ /scripts/
haproxy
frontend wwwbind :80# name fetch flags valueacl static_url path -i -m beg /images/ /scripts/
Here, there is initially two values, /images/
and /scripts/
. Use del acl
to delete a value.
You can also store values in a file and then reference that file in an acl
statement by using the -f /path/to/file
flag. Use the del acl
command to delete a value to the file. Note that this only removes it from the load balancer’s runtime memory and not to the file on disk.
ACL files can also be virtual or optional. If you’re using a virtual ACL file, prefix the filename with virt@
when calling del acl
. If the file is optional, then don’t specify a prefix.
Examples Jump to heading
In this example, we demonstrate two ways to delete an ACL from runtime memory. The first way references the ACL by its unique identifier. The second way uses its path-based name.
-
Use
del acl
to remove the value/scripts/
. Pass to it the ID of the ACL:nixecho "del acl #0 /scripts/" | \sudo socat stdio tcp4-connect:127.0.0.1:9999nixecho "del acl #0 /scripts/" | \sudo socat stdio tcp4-connect:127.0.0.1:9999This updates the ACL so that it represents this expression:
haproxyfrontend wwwbind :80acl static_url path -i -m beg /images/haproxyfrontend wwwbind :80acl static_url path -i -m beg /images/
In the next example, we remove the value /stylesheets/
from the ACL file
/etc/hapee-3.0/paths.acl
:
nix
echo "del acl /etc/hapee-3.0/paths.acl /stylesheets/" | \sudo socat stdio tcp4-connect:127.0.0.1:9999
nix
echo "del acl /etc/hapee-3.0/paths.acl /stylesheets/" | \sudo socat stdio tcp4-connect:127.0.0.1:9999
See also Jump to heading
Do you have any suggestions on how we can improve the content of this page?