mirror of
http://git.haproxy.org/git/haproxy.git/
synced 2024-12-15 07:54:33 +00:00
DOC: fix parenthesis and add missing "Example" tags
- urlp_val had unbalanced parenthesis / square brackets - src_clr_gpc0,src_inc_gpc0,sc2_clr_gpc0,sc2_inc_gpc0,ssl_c_sha1 had examples not tagged as such.
This commit is contained in:
parent
2b553de595
commit
676f6224ac
@ -13383,6 +13383,7 @@ sc2_clr_gpc0([<table>]) : integer
|
|||||||
typically used as a second ACL in an expression in order to mark a connection
|
typically used as a second ACL in an expression in order to mark a connection
|
||||||
when a first ACL was verified :
|
when a first ACL was verified :
|
||||||
|
|
||||||
|
Example:
|
||||||
# block if 5 consecutive requests continue to come faster than 10 sess
|
# block if 5 consecutive requests continue to come faster than 10 sess
|
||||||
# per second, and reset the counter as soon as the traffic slows down.
|
# per second, and reset the counter as soon as the traffic slows down.
|
||||||
acl abuse sc0_http_req_rate gt 10
|
acl abuse sc0_http_req_rate gt 10
|
||||||
@ -13483,6 +13484,7 @@ sc2_inc_gpc0([<table>]) : integer
|
|||||||
return 1. This is typically used as a second ACL in an expression in order
|
return 1. This is typically used as a second ACL in an expression in order
|
||||||
to mark a connection when a first ACL was verified :
|
to mark a connection when a first ACL was verified :
|
||||||
|
|
||||||
|
Example:
|
||||||
acl abuse sc0_http_req_rate gt 10
|
acl abuse sc0_http_req_rate gt 10
|
||||||
acl kill sc0_inc_gpc0 gt 0
|
acl kill sc0_inc_gpc0 gt 0
|
||||||
tcp-request connection reject if abuse kill
|
tcp-request connection reject if abuse kill
|
||||||
@ -13585,6 +13587,7 @@ src_clr_gpc0([<table>]) : integer
|
|||||||
second ACL in an expression in order to mark a connection when a first ACL
|
second ACL in an expression in order to mark a connection when a first ACL
|
||||||
was verified :
|
was verified :
|
||||||
|
|
||||||
|
Example:
|
||||||
# block if 5 consecutive requests continue to come faster than 10 sess
|
# block if 5 consecutive requests continue to come faster than 10 sess
|
||||||
# per second, and reset the counter as soon as the traffic slows down.
|
# per second, and reset the counter as soon as the traffic slows down.
|
||||||
acl abuse src_http_req_rate gt 10
|
acl abuse src_http_req_rate gt 10
|
||||||
@ -13667,6 +13670,7 @@ src_inc_gpc0([<table>]) : integer
|
|||||||
This is typically used as a second ACL in an expression in order to mark a
|
This is typically used as a second ACL in an expression in order to mark a
|
||||||
connection when a first ACL was verified :
|
connection when a first ACL was verified :
|
||||||
|
|
||||||
|
Example:
|
||||||
acl abuse src_http_req_rate gt 10
|
acl abuse src_http_req_rate gt 10
|
||||||
acl kill src_inc_gpc0 gt 0
|
acl kill src_inc_gpc0 gt 0
|
||||||
tcp-request connection reject if abuse kill
|
tcp-request connection reject if abuse kill
|
||||||
@ -13870,6 +13874,7 @@ ssl_c_sha1 : binary
|
|||||||
Note that the output is binary, so if you want to pass that signature to the
|
Note that the output is binary, so if you want to pass that signature to the
|
||||||
server, you need to encode it in hex or base64, such as in the example below:
|
server, you need to encode it in hex or base64, such as in the example below:
|
||||||
|
|
||||||
|
Example:
|
||||||
http-request set-header X-SSL-Client-SHA1 %[ssl_c_sha1,hex]
|
http-request set-header X-SSL-Client-SHA1 %[ssl_c_sha1,hex]
|
||||||
|
|
||||||
ssl_c_sig_alg : string
|
ssl_c_sig_alg : string
|
||||||
@ -14833,7 +14838,7 @@ url_param([<name>[,<delim>]]) : string
|
|||||||
# match http://example.com/foo;JSESSIONID=some_id
|
# match http://example.com/foo;JSESSIONID=some_id
|
||||||
stick on urlp(JSESSIONID,;)
|
stick on urlp(JSESSIONID,;)
|
||||||
|
|
||||||
urlp_val([<name>[,<delim>])] : integer
|
urlp_val([<name>[,<delim>]]) : integer
|
||||||
See "urlp" above. This one extracts the URL parameter <name> in the request
|
See "urlp" above. This one extracts the URL parameter <name> in the request
|
||||||
and converts it to an integer value. This can be used for session stickiness
|
and converts it to an integer value. This can be used for session stickiness
|
||||||
based on a user ID for example, or with ACLs to match a page number or price.
|
based on a user ID for example, or with ACLs to match a page number or price.
|
||||||
|
Loading…
Reference in New Issue
Block a user