]> git.ipfire.org Git - thirdparty/haproxy.git/commitdiff
[DOC] fix typos (http-request instead of http-check)
authorWilly Tarreau <w@1wt.eu>
Thu, 6 Jan 2011 15:36:10 +0000 (16:36 +0100)
committerWilly Tarreau <w@1wt.eu>
Sun, 13 Feb 2011 11:18:17 +0000 (12:18 +0100)
doc/configuration.txt

index c768fc72cc0ba909816d77e52df6d2e98a987a26..9811b474197a125d99cfaae478ba16d0b11a16ae 100644 (file)
@@ -2376,16 +2376,16 @@ http-check expect [!] <match> <pattern>
 
   Examples :
          # only accept status 200 as valid
-         http-request expect status 200
+         http-check expect status 200
 
          # consider SQL errors as errors
-         http-request expect ! string SQL\ Error
+         http-check expect ! string SQL\ Error
 
          # consider status 5xx only as errors
-         http-request expect ! rstatus ^5
+         http-check expect ! rstatus ^5
 
          # check that we have a correct hexadecimal tag before /html
-         http-request expect rstring <!--tag:[0-9a-f]*</html>
+         http-check expect rstring <!--tag:[0-9a-f]*</html>
 
   See also : "option httpchk", "http-check disable-on-404"