blob: 643afd91937b5a26f87b2cff1429e6cc5228aede [file] [log] [blame]
Willy Tarreau6a06a402007-07-15 20:15:28 +02001 ----------------------
2 HAProxy
3 Configuration Manual
4 ----------------------
Willy Tarreau21475e32010-05-23 08:46:08 +02005 version 1.5
Willy Tarreau6a06a402007-07-15 20:15:28 +02006 willy tarreau
Willy Tarreaueab1dc62013-06-17 15:10:25 +02007 2013/06/17
Willy Tarreau6a06a402007-07-15 20:15:28 +02008
9
10This document covers the configuration language as implemented in the version
11specified above. It does not provide any hint, example or advice. For such
Willy Tarreau0ba27502007-12-24 16:55:16 +010012documentation, please refer to the Reference Manual or the Architecture Manual.
Willy Tarreauc57f0e22009-05-10 13:12:33 +020013The summary below is meant to help you search sections by name and navigate
14through the document.
Willy Tarreau6a06a402007-07-15 20:15:28 +020015
Willy Tarreauc57f0e22009-05-10 13:12:33 +020016Note to documentation contributors :
Jamie Gloudonaaa21002012-08-25 00:18:33 -040017 This document is formatted with 80 columns per line, with even number of
Willy Tarreauc57f0e22009-05-10 13:12:33 +020018 spaces for indentation and without tabs. Please follow these rules strictly
19 so that it remains easily printable everywhere. If a line needs to be
20 printed verbatim and does not fit, please end each line with a backslash
Willy Tarreau62a36c42010-08-17 15:53:10 +020021 ('\') and continue on next line, indented by two characters. It is also
22 sometimes useful to prefix all output lines (logs, console outs) with 3
23 closing angle brackets ('>>>') in order to help get the difference between
24 inputs and outputs when it can become ambiguous. If you add sections,
25 please update the summary below for easier searching.
Willy Tarreauc57f0e22009-05-10 13:12:33 +020026
27
28Summary
29-------
30
311. Quick reminder about HTTP
321.1. The HTTP transaction model
331.2. HTTP request
341.2.1. The Request line
351.2.2. The request headers
361.3. HTTP response
371.3.1. The Response line
381.3.2. The response headers
39
402. Configuring HAProxy
412.1. Configuration file format
422.2. Time format
Patrick Mezard35da19c2010-06-12 17:02:47 +0200432.3. Examples
Willy Tarreauc57f0e22009-05-10 13:12:33 +020044
453. Global parameters
463.1. Process management and security
473.2. Performance tuning
483.3. Debugging
Krzysztof Piotr Oledzki6b35ce12010-02-01 23:35:44 +0100493.4. Userlists
Cyril Bontédc4d9032012-04-08 21:57:39 +0200503.5. Peers
Willy Tarreauc57f0e22009-05-10 13:12:33 +020051
524. Proxies
534.1. Proxy keywords matrix
544.2. Alphabetically sorted keywords reference
55
Willy Tarreau086fbf52012-09-24 20:34:51 +0200565. Bind and Server options
575.1. Bind options
585.2. Server and default-server options
Willy Tarreauc57f0e22009-05-10 13:12:33 +020059
606. HTTP header manipulation
61
Willy Tarreau74ca5042013-06-11 23:12:07 +0200627. Using ACLs and fetching samples
637.1. ACL basics
647.1.1. Matching booleans
657.1.2. Matching integers
667.1.3. Matching strings
677.1.4. Matching regular expressions (regexes)
687.1.5. Matching arbitrary data blocks
697.1.6. Matching IPv4 and IPv6 addresses
707.2. Using ACLs to form conditions
717.3. Fetching samples
727.3.1. Fetching samples from internal states
737.3.2. Fetching samples at Layer 4
747.3.3. Fetching samples at Layer 5
757.3.4. Fetching samples from buffer contents (Layer 6)
767.3.5. Fetching HTTP samples (Layer 7)
777.4. Pre-defined ACLs
Willy Tarreauc57f0e22009-05-10 13:12:33 +020078
798. Logging
808.1. Log levels
818.2. Log formats
828.2.1. Default log format
838.2.2. TCP log format
848.2.3. HTTP log format
William Lallemand48940402012-01-30 16:47:22 +0100858.2.4. Custom log format
Willy Tarreau5f51e1a2012-12-03 18:40:10 +0100868.2.5. Error log format
Willy Tarreauc57f0e22009-05-10 13:12:33 +0200878.3. Advanced logging options
888.3.1. Disabling logging of external tests
898.3.2. Logging before waiting for the session to terminate
908.3.3. Raising log level upon errors
918.3.4. Disabling logging of successful connections
928.4. Timing events
938.5. Session state at disconnection
948.6. Non-printable characters
958.7. Capturing HTTP cookies
968.8. Capturing HTTP headers
978.9. Examples of logs
98
999. Statistics and monitoring
1009.1. CSV format
1019.2. Unix Socket commands
102
103
1041. Quick reminder about HTTP
105----------------------------
106
107When haproxy is running in HTTP mode, both the request and the response are
108fully analyzed and indexed, thus it becomes possible to build matching criteria
109on almost anything found in the contents.
110
111However, it is important to understand how HTTP requests and responses are
112formed, and how HAProxy decomposes them. It will then become easier to write
113correct rules and to debug existing configurations.
114
115
1161.1. The HTTP transaction model
117-------------------------------
118
119The HTTP protocol is transaction-driven. This means that each request will lead
Krzysztof Piotr Oledzkif8645332009-12-13 21:55:50 +0100120to one and only one response. Traditionally, a TCP connection is established
Willy Tarreauc57f0e22009-05-10 13:12:33 +0200121from the client to the server, a request is sent by the client on the
122connection, the server responds and the connection is closed. A new request
123will involve a new connection :
124
125 [CON1] [REQ1] ... [RESP1] [CLO1] [CON2] [REQ2] ... [RESP2] [CLO2] ...
126
127In this mode, called the "HTTP close" mode, there are as many connection
128establishments as there are HTTP transactions. Since the connection is closed
129by the server after the response, the client does not need to know the content
130length.
131
132Due to the transactional nature of the protocol, it was possible to improve it
133to avoid closing a connection between two subsequent transactions. In this mode
134however, it is mandatory that the server indicates the content length for each
135response so that the client does not wait indefinitely. For this, a special
136header is used: "Content-length". This mode is called the "keep-alive" mode :
137
138 [CON] [REQ1] ... [RESP1] [REQ2] ... [RESP2] [CLO] ...
139
140Its advantages are a reduced latency between transactions, and less processing
141power required on the server side. It is generally better than the close mode,
142but not always because the clients often limit their concurrent connections to
Patrick Mezard9ec2ec42010-06-12 17:02:45 +0200143a smaller value.
Willy Tarreauc57f0e22009-05-10 13:12:33 +0200144
145A last improvement in the communications is the pipelining mode. It still uses
146keep-alive, but the client does not wait for the first response to send the
147second request. This is useful for fetching large number of images composing a
148page :
149
150 [CON] [REQ1] [REQ2] ... [RESP1] [RESP2] [CLO] ...
151
152This can obviously have a tremendous benefit on performance because the network
153latency is eliminated between subsequent requests. Many HTTP agents do not
154correctly support pipelining since there is no way to associate a response with
155the corresponding request in HTTP. For this reason, it is mandatory for the
Cyril Bonté78caf842010-03-10 22:41:43 +0100156server to reply in the exact same order as the requests were received.
Willy Tarreauc57f0e22009-05-10 13:12:33 +0200157
Patrick Mezard9ec2ec42010-06-12 17:02:45 +0200158By default HAProxy operates in a tunnel-like mode with regards to persistent
159connections: for each connection it processes the first request and forwards
160everything else (including additional requests) to selected server. Once
161established, the connection is persisted both on the client and server
162sides. Use "option http-server-close" to preserve client persistent connections
163while handling every incoming request individually, dispatching them one after
164another to servers, in HTTP close mode. Use "option httpclose" to switch both
165sides to HTTP close mode. "option forceclose" and "option
166http-pretend-keepalive" help working around servers misbehaving in HTTP close
167mode.
168
Willy Tarreauc57f0e22009-05-10 13:12:33 +0200169
1701.2. HTTP request
171-----------------
172
173First, let's consider this HTTP request :
174
175 Line Contents
Willy Tarreaud72758d2010-01-12 10:42:19 +0100176 number
Willy Tarreauc57f0e22009-05-10 13:12:33 +0200177 1 GET /serv/login.php?lang=en&profile=2 HTTP/1.1
178 2 Host: www.mydomain.com
179 3 User-agent: my small browser
180 4 Accept: image/jpeg, image/gif
181 5 Accept: image/png
182
183
1841.2.1. The Request line
185-----------------------
186
187Line 1 is the "request line". It is always composed of 3 fields :
188
189 - a METHOD : GET
190 - a URI : /serv/login.php?lang=en&profile=2
191 - a version tag : HTTP/1.1
192
193All of them are delimited by what the standard calls LWS (linear white spaces),
194which are commonly spaces, but can also be tabs or line feeds/carriage returns
195followed by spaces/tabs. The method itself cannot contain any colon (':') and
196is limited to alphabetic letters. All those various combinations make it
197desirable that HAProxy performs the splitting itself rather than leaving it to
198the user to write a complex or inaccurate regular expression.
199
200The URI itself can have several forms :
201
202 - A "relative URI" :
203
204 /serv/login.php?lang=en&profile=2
205
206 It is a complete URL without the host part. This is generally what is
207 received by servers, reverse proxies and transparent proxies.
208
209 - An "absolute URI", also called a "URL" :
210
211 http://192.168.0.12:8080/serv/login.php?lang=en&profile=2
212
213 It is composed of a "scheme" (the protocol name followed by '://'), a host
214 name or address, optionally a colon (':') followed by a port number, then
215 a relative URI beginning at the first slash ('/') after the address part.
216 This is generally what proxies receive, but a server supporting HTTP/1.1
217 must accept this form too.
218
219 - a star ('*') : this form is only accepted in association with the OPTIONS
220 method and is not relayable. It is used to inquiry a next hop's
221 capabilities.
Willy Tarreaud72758d2010-01-12 10:42:19 +0100222
Willy Tarreauc57f0e22009-05-10 13:12:33 +0200223 - an address:port combination : 192.168.0.12:80
224 This is used with the CONNECT method, which is used to establish TCP
225 tunnels through HTTP proxies, generally for HTTPS, but sometimes for
226 other protocols too.
227
228In a relative URI, two sub-parts are identified. The part before the question
229mark is called the "path". It is typically the relative path to static objects
230on the server. The part after the question mark is called the "query string".
231It is mostly used with GET requests sent to dynamic scripts and is very
232specific to the language, framework or application in use.
233
234
2351.2.2. The request headers
236--------------------------
237
238The headers start at the second line. They are composed of a name at the
239beginning of the line, immediately followed by a colon (':'). Traditionally,
240an LWS is added after the colon but that's not required. Then come the values.
241Multiple identical headers may be folded into one single line, delimiting the
242values with commas, provided that their order is respected. This is commonly
243encountered in the "Cookie:" field. A header may span over multiple lines if
244the subsequent lines begin with an LWS. In the example in 1.2, lines 4 and 5
245define a total of 3 values for the "Accept:" header.
246
247Contrary to a common mis-conception, header names are not case-sensitive, and
248their values are not either if they refer to other header names (such as the
249"Connection:" header).
250
251The end of the headers is indicated by the first empty line. People often say
252that it's a double line feed, which is not exact, even if a double line feed
253is one valid form of empty line.
254
255Fortunately, HAProxy takes care of all these complex combinations when indexing
256headers, checking values and counting them, so there is no reason to worry
257about the way they could be written, but it is important not to accuse an
258application of being buggy if it does unusual, valid things.
259
260Important note:
261 As suggested by RFC2616, HAProxy normalizes headers by replacing line breaks
262 in the middle of headers by LWS in order to join multi-line headers. This
263 is necessary for proper analysis and helps less capable HTTP parsers to work
264 correctly and not to be fooled by such complex constructs.
265
266
2671.3. HTTP response
268------------------
269
270An HTTP response looks very much like an HTTP request. Both are called HTTP
271messages. Let's consider this HTTP response :
272
273 Line Contents
Willy Tarreaud72758d2010-01-12 10:42:19 +0100274 number
Willy Tarreauc57f0e22009-05-10 13:12:33 +0200275 1 HTTP/1.1 200 OK
276 2 Content-length: 350
277 3 Content-Type: text/html
278
Willy Tarreau816b9792009-09-15 21:25:21 +0200279As a special case, HTTP supports so called "Informational responses" as status
280codes 1xx. These messages are special in that they don't convey any part of the
281response, they're just used as sort of a signaling message to ask a client to
Willy Tarreau5843d1a2010-02-01 15:13:32 +0100282continue to post its request for instance. In the case of a status 100 response
283the requested information will be carried by the next non-100 response message
284following the informational one. This implies that multiple responses may be
285sent to a single request, and that this only works when keep-alive is enabled
286(1xx messages are HTTP/1.1 only). HAProxy handles these messages and is able to
287correctly forward and skip them, and only process the next non-100 response. As
288such, these messages are neither logged nor transformed, unless explicitly
289state otherwise. Status 101 messages indicate that the protocol is changing
290over the same connection and that haproxy must switch to tunnel mode, just as
291if a CONNECT had occurred. Then the Upgrade header would contain additional
292information about the type of protocol the connection is switching to.
Willy Tarreau816b9792009-09-15 21:25:21 +0200293
Willy Tarreauc57f0e22009-05-10 13:12:33 +0200294
2951.3.1. The Response line
296------------------------
297
298Line 1 is the "response line". It is always composed of 3 fields :
299
300 - a version tag : HTTP/1.1
301 - a status code : 200
302 - a reason : OK
303
304The status code is always 3-digit. The first digit indicates a general status :
Willy Tarreau816b9792009-09-15 21:25:21 +0200305 - 1xx = informational message to be skipped (eg: 100, 101)
Willy Tarreauc57f0e22009-05-10 13:12:33 +0200306 - 2xx = OK, content is following (eg: 200, 206)
307 - 3xx = OK, no content following (eg: 302, 304)
308 - 4xx = error caused by the client (eg: 401, 403, 404)
309 - 5xx = error caused by the server (eg: 500, 502, 503)
310
311Please refer to RFC2616 for the detailed meaning of all such codes. The
Willy Tarreaud72758d2010-01-12 10:42:19 +0100312"reason" field is just a hint, but is not parsed by clients. Anything can be
Willy Tarreauc57f0e22009-05-10 13:12:33 +0200313found there, but it's a common practice to respect the well-established
314messages. It can be composed of one or multiple words, such as "OK", "Found",
315or "Authentication Required".
316
317Haproxy may emit the following status codes by itself :
318
319 Code When / reason
320 200 access to stats page, and when replying to monitoring requests
321 301 when performing a redirection, depending on the configured code
322 302 when performing a redirection, depending on the configured code
323 303 when performing a redirection, depending on the configured code
Willy Tarreaub67fdc42013-03-29 19:28:11 +0100324 307 when performing a redirection, depending on the configured code
325 308 when performing a redirection, depending on the configured code
Willy Tarreauc57f0e22009-05-10 13:12:33 +0200326 400 for an invalid or too large request
327 401 when an authentication is required to perform the action (when
328 accessing the stats page)
329 403 when a request is forbidden by a "block" ACL or "reqdeny" filter
330 408 when the request timeout strikes before the request is complete
331 500 when haproxy encounters an unrecoverable internal error, such as a
332 memory allocation failure, which should never happen
333 502 when the server returns an empty, invalid or incomplete response, or
334 when an "rspdeny" filter blocks the response.
335 503 when no server was available to handle the request, or in response to
336 monitoring requests which match the "monitor fail" condition
337 504 when the response timeout strikes before the server responds
338
339The error 4xx and 5xx codes above may be customized (see "errorloc" in section
3404.2).
341
342
3431.3.2. The response headers
344---------------------------
345
346Response headers work exactly like request headers, and as such, HAProxy uses
347the same parsing function for both. Please refer to paragraph 1.2.2 for more
348details.
349
350
3512. Configuring HAProxy
352----------------------
353
3542.1. Configuration file format
355------------------------------
Willy Tarreau6a06a402007-07-15 20:15:28 +0200356
357HAProxy's configuration process involves 3 major sources of parameters :
358
359 - the arguments from the command-line, which always take precedence
360 - the "global" section, which sets process-wide parameters
361 - the proxies sections which can take form of "defaults", "listen",
362 "frontend" and "backend".
363
Willy Tarreau0ba27502007-12-24 16:55:16 +0100364The configuration file syntax consists in lines beginning with a keyword
365referenced in this manual, optionally followed by one or several parameters
366delimited by spaces. If spaces have to be entered in strings, then they must be
Krzysztof Piotr Oledzkif8645332009-12-13 21:55:50 +0100367preceded by a backslash ('\') to be escaped. Backslashes also have to be
Willy Tarreau0ba27502007-12-24 16:55:16 +0100368escaped by doubling them.
369
Willy Tarreauc57f0e22009-05-10 13:12:33 +0200370
3712.2. Time format
372----------------
373
Krzysztof Piotr Oledzkif8645332009-12-13 21:55:50 +0100374Some parameters involve values representing time, such as timeouts. These
Willy Tarreau0ba27502007-12-24 16:55:16 +0100375values are generally expressed in milliseconds (unless explicitly stated
376otherwise) but may be expressed in any other unit by suffixing the unit to the
377numeric value. It is important to consider this because it will not be repeated
378for every keyword. Supported units are :
379
380 - us : microseconds. 1 microsecond = 1/1000000 second
381 - ms : milliseconds. 1 millisecond = 1/1000 second. This is the default.
382 - s : seconds. 1s = 1000ms
383 - m : minutes. 1m = 60s = 60000ms
384 - h : hours. 1h = 60m = 3600s = 3600000ms
385 - d : days. 1d = 24h = 1440m = 86400s = 86400000ms
386
387
Patrick Mezard35da19c2010-06-12 17:02:47 +02003882.3. Examples
389-------------
390
391 # Simple configuration for an HTTP proxy listening on port 80 on all
392 # interfaces and forwarding requests to a single backend "servers" with a
393 # single server "server1" listening on 127.0.0.1:8000
394 global
395 daemon
396 maxconn 256
397
398 defaults
399 mode http
400 timeout connect 5000ms
401 timeout client 50000ms
402 timeout server 50000ms
403
404 frontend http-in
405 bind *:80
406 default_backend servers
407
408 backend servers
409 server server1 127.0.0.1:8000 maxconn 32
410
411
412 # The same configuration defined with a single listen block. Shorter but
413 # less expressive, especially in HTTP mode.
414 global
415 daemon
416 maxconn 256
417
418 defaults
419 mode http
420 timeout connect 5000ms
421 timeout client 50000ms
422 timeout server 50000ms
423
424 listen http-in
425 bind *:80
426 server server1 127.0.0.1:8000 maxconn 32
427
428
429Assuming haproxy is in $PATH, test these configurations in a shell with:
430
Willy Tarreauccb289d2010-12-11 20:19:38 +0100431 $ sudo haproxy -f configuration.conf -c
Patrick Mezard35da19c2010-06-12 17:02:47 +0200432
433
Willy Tarreauc57f0e22009-05-10 13:12:33 +02004343. Global parameters
Willy Tarreau6a06a402007-07-15 20:15:28 +0200435--------------------
436
437Parameters in the "global" section are process-wide and often OS-specific. They
438are generally set once for all and do not need being changed once correct. Some
439of them have command-line equivalents.
440
441The following keywords are supported in the "global" section :
442
443 * Process management and security
Emeric Brunc8e8d122012-10-02 18:42:10 +0200444 - ca-base
Willy Tarreau6a06a402007-07-15 20:15:28 +0200445 - chroot
Emeric Brunc8e8d122012-10-02 18:42:10 +0200446 - crt-base
Willy Tarreau6a06a402007-07-15 20:15:28 +0200447 - daemon
448 - gid
449 - group
450 - log
Joe Williamsdf5b38f2010-12-29 17:05:48 +0100451 - log-send-hostname
Willy Tarreau6a06a402007-07-15 20:15:28 +0200452 - nbproc
453 - pidfile
454 - uid
455 - ulimit-n
456 - user
Willy Tarreaufbee7132007-10-18 13:53:22 +0200457 - stats
Krzysztof Piotr Oledzki48cb2ae2009-10-02 22:51:14 +0200458 - node
459 - description
Willy Tarreauceb24bc2010-11-09 12:46:41 +0100460 - unix-bind
Willy Tarreaud72758d2010-01-12 10:42:19 +0100461
Willy Tarreau6a06a402007-07-15 20:15:28 +0200462 * Performance tuning
463 - maxconn
Willy Tarreau81c25d02011-09-07 15:17:21 +0200464 - maxconnrate
William Lallemandd85f9172012-11-09 17:05:39 +0100465 - maxcomprate
William Lallemand072a2bf2012-11-20 17:01:01 +0100466 - maxcompcpuusage
Willy Tarreauff4f82d2009-02-06 11:28:13 +0100467 - maxpipes
Willy Tarreau403edff2012-09-06 11:58:37 +0200468 - maxsslconn
Willy Tarreau6a06a402007-07-15 20:15:28 +0200469 - noepoll
470 - nokqueue
471 - nopoll
Willy Tarreauff4f82d2009-02-06 11:28:13 +0100472 - nosplice
Willy Tarreaufe255b72007-10-14 23:09:26 +0200473 - spread-checks
Willy Tarreau27a674e2009-08-17 07:23:33 +0200474 - tune.bufsize
Willy Tarreau43961d52010-10-04 20:39:20 +0200475 - tune.chksize
William Lallemandf3747832012-11-09 12:33:10 +0100476 - tune.comp.maxlevel
Willy Tarreau193b8c62012-11-22 00:17:38 +0100477 - tune.http.cookielen
Willy Tarreauac1932d2011-10-24 19:14:41 +0200478 - tune.http.maxhdr
Willy Tarreaua0250ba2008-01-06 11:22:57 +0100479 - tune.maxaccept
480 - tune.maxpollevents
Willy Tarreau27a674e2009-08-17 07:23:33 +0200481 - tune.maxrewrite
Willy Tarreaubd9a0a72011-10-23 21:14:29 +0200482 - tune.pipesize
Willy Tarreaue803de22010-01-21 17:43:04 +0100483 - tune.rcvbuf.client
484 - tune.rcvbuf.server
485 - tune.sndbuf.client
486 - tune.sndbuf.server
Willy Tarreau6ec58db2012-11-16 16:32:15 +0100487 - tune.ssl.cachesize
Willy Tarreaubfd59462013-02-21 07:46:09 +0100488 - tune.ssl.lifetime
489 - tune.ssl.maxrecord
William Lallemanda509e4c2012-11-07 16:54:34 +0100490 - tune.zlib.memlevel
491 - tune.zlib.windowsize
Willy Tarreaud72758d2010-01-12 10:42:19 +0100492
Willy Tarreau6a06a402007-07-15 20:15:28 +0200493 * Debugging
494 - debug
495 - quiet
Willy Tarreau6a06a402007-07-15 20:15:28 +0200496
497
Willy Tarreauc57f0e22009-05-10 13:12:33 +02004983.1. Process management and security
Willy Tarreau6a06a402007-07-15 20:15:28 +0200499------------------------------------
500
Emeric Brunc8e8d122012-10-02 18:42:10 +0200501ca-base <dir>
502 Assigns a default directory to fetch SSL CA certificates and CRLs from when a
Emeric Brunfd33a262012-10-11 16:28:27 +0200503 relative path is used with "ca-file" or "crl-file" directives. Absolute
504 locations specified in "ca-file" and "crl-file" prevail and ignore "ca-base".
Emeric Brunc8e8d122012-10-02 18:42:10 +0200505
Willy Tarreau6a06a402007-07-15 20:15:28 +0200506chroot <jail dir>
507 Changes current directory to <jail dir> and performs a chroot() there before
508 dropping privileges. This increases the security level in case an unknown
509 vulnerability would be exploited, since it would make it very hard for the
510 attacker to exploit the system. This only works when the process is started
511 with superuser privileges. It is important to ensure that <jail_dir> is both
512 empty and unwritable to anyone.
Willy Tarreaud72758d2010-01-12 10:42:19 +0100513
Willy Tarreaufc6c0322012-11-16 16:12:27 +0100514cpu-map <"all"|"odd"|"even"|process_num> <cpu-set>...
515 On Linux 2.6 and above, it is possible to bind a process to a specific CPU
516 set. This means that the process will never run on other CPUs. The "cpu-map"
517 directive specifies CPU sets for process sets. The first argument is the
518 process number to bind. This process must have a number between 1 and 32,
519 and any process IDs above nbproc are ignored. It is possible to specify all
520 processes at once using "all", only odd numbers using "odd" or even numbers
521 using "even", just like with the "bind-process" directive. The second and
522 forthcoming arguments are CPU sets. Each CPU set is either a unique number
523 between 0 and 31 or a range with two such numbers delimited by a dash ('-').
524 Multiple CPU numbers or ranges may be specified, and the processes will be
525 allowed to bind to all of them. Obviously, multiple "cpu-map" directives may
526 be specified. Each "cpu-map" directive will replace the previous ones when
527 they overlap.
528
Emeric Brunc8e8d122012-10-02 18:42:10 +0200529crt-base <dir>
530 Assigns a default directory to fetch SSL certificates from when a relative
531 path is used with "crtfile" directives. Absolute locations specified after
532 "crtfile" prevail and ignore "crt-base".
533
Willy Tarreau6a06a402007-07-15 20:15:28 +0200534daemon
535 Makes the process fork into background. This is the recommended mode of
536 operation. It is equivalent to the command line "-D" argument. It can be
537 disabled by the command line "-db" argument.
538
539gid <number>
540 Changes the process' group ID to <number>. It is recommended that the group
541 ID is dedicated to HAProxy or to a small set of similar daemons. HAProxy must
542 be started with a user belonging to this group, or with superuser privileges.
Michael Schererab012dd2013-01-12 18:35:19 +0100543 Note that if haproxy is started from a user having supplementary groups, it
544 will only be able to drop these groups if started with superuser privileges.
Willy Tarreau6a06a402007-07-15 20:15:28 +0200545 See also "group" and "uid".
Willy Tarreaud72758d2010-01-12 10:42:19 +0100546
Willy Tarreau6a06a402007-07-15 20:15:28 +0200547group <group name>
548 Similar to "gid" but uses the GID of group name <group name> from /etc/group.
549 See also "gid" and "user".
Willy Tarreaud72758d2010-01-12 10:42:19 +0100550
Willy Tarreauf7edefa2009-05-10 17:20:05 +0200551log <address> <facility> [max level [min level]]
Willy Tarreau6a06a402007-07-15 20:15:28 +0200552 Adds a global syslog server. Up to two global servers can be defined. They
553 will receive logs for startups and exits, as well as all logs from proxies
Robert Tsai81ae1952007-12-05 10:47:29 +0100554 configured with "log global".
555
556 <address> can be one of:
557
Willy Tarreau2769aa02007-12-27 18:26:09 +0100558 - An IPv4 address optionally followed by a colon and a UDP port. If
Robert Tsai81ae1952007-12-05 10:47:29 +0100559 no port is specified, 514 is used by default (the standard syslog
560 port).
561
David du Colombier24bb5f52011-03-17 10:40:23 +0100562 - An IPv6 address followed by a colon and optionally a UDP port. If
563 no port is specified, 514 is used by default (the standard syslog
564 port).
565
Robert Tsai81ae1952007-12-05 10:47:29 +0100566 - A filesystem path to a UNIX domain socket, keeping in mind
567 considerations for chroot (be sure the path is accessible inside
568 the chroot) and uid/gid (be sure the path is appropriately
569 writeable).
570
Willy Tarreaudad36a32013-03-11 01:20:04 +0100571 Any part of the address string may reference any number of environment
572 variables by preceding their name with a dollar sign ('$') and
573 optionally enclosing them with braces ('{}'), similarly to what is done
574 in Bourne shell.
575
Robert Tsai81ae1952007-12-05 10:47:29 +0100576 <facility> must be one of the 24 standard syslog facilities :
Willy Tarreau6a06a402007-07-15 20:15:28 +0200577
578 kern user mail daemon auth syslog lpr news
579 uucp cron auth2 ftp ntp audit alert cron2
580 local0 local1 local2 local3 local4 local5 local6 local7
581
582 An optional level can be specified to filter outgoing messages. By default,
Willy Tarreauf7edefa2009-05-10 17:20:05 +0200583 all messages are sent. If a maximum level is specified, only messages with a
584 severity at least as important as this level will be sent. An optional minimum
585 level can be specified. If it is set, logs emitted with a more severe level
586 than this one will be capped to this level. This is used to avoid sending
587 "emerg" messages on all terminals on some default syslog configurations.
588 Eight levels are known :
Willy Tarreau6a06a402007-07-15 20:15:28 +0200589
Cyril Bontédc4d9032012-04-08 21:57:39 +0200590 emerg alert crit err warning notice info debug
Willy Tarreau6a06a402007-07-15 20:15:28 +0200591
Joe Williamsdf5b38f2010-12-29 17:05:48 +0100592log-send-hostname [<string>]
593 Sets the hostname field in the syslog header. If optional "string" parameter
594 is set the header is set to the string contents, otherwise uses the hostname
595 of the system. Generally used if one is not relaying logs through an
596 intermediate syslog server or for simply customizing the hostname printed in
597 the logs.
598
Kevinm48936af2010-12-22 16:08:21 +0000599log-tag <string>
600 Sets the tag field in the syslog header to this string. It defaults to the
601 program name as launched from the command line, which usually is "haproxy".
602 Sometimes it can be useful to differentiate between multiple processes
603 running on the same host.
604
Willy Tarreau6a06a402007-07-15 20:15:28 +0200605nbproc <number>
606 Creates <number> processes when going daemon. This requires the "daemon"
607 mode. By default, only one process is created, which is the recommended mode
608 of operation. For systems limited to small sets of file descriptors per
609 process, it may be needed to fork multiple daemons. USING MULTIPLE PROCESSES
610 IS HARDER TO DEBUG AND IS REALLY DISCOURAGED. See also "daemon".
611
612pidfile <pidfile>
613 Writes pids of all daemons into file <pidfile>. This option is equivalent to
614 the "-p" command line argument. The file must be accessible to the user
615 starting the process. See also "daemon".
616
Willy Tarreau110ecc12012-11-15 17:50:01 +0100617stats bind-process [ all | odd | even | <number 1-32>[-<number 1-32>] ] ...
Willy Tarreau35b7b162012-10-22 23:17:18 +0200618 Limits the stats socket to a certain set of processes numbers. By default the
619 stats socket is bound to all processes, causing a warning to be emitted when
620 nbproc is greater than 1 because there is no way to select the target process
621 when connecting. However, by using this setting, it becomes possible to pin
622 the stats socket to a specific set of processes, typically the first one. The
623 warning will automatically be disabled when this setting is used, whatever
624 the number of processes used.
625
Willy Tarreauabb175f2012-09-24 12:43:26 +0200626stats socket [<address:port>|<path>] [param*]
627 Binds a UNIX socket to <path> or a TCPv4/v6 address to <address:port>.
628 Connections to this socket will return various statistics outputs and even
629 allow some commands to be issued to change some runtime settings. Please
630 consult section 9.2 "Unix Socket commands" for more details.
Willy Tarreau6162db22009-10-10 17:13:00 +0200631
Willy Tarreauabb175f2012-09-24 12:43:26 +0200632 All parameters supported by "bind" lines are supported, for instance to
633 restrict access to some users or their access rights. Please consult
634 section 5.1 for more information.
Willy Tarreaufbee7132007-10-18 13:53:22 +0200635
636stats timeout <timeout, in milliseconds>
637 The default timeout on the stats socket is set to 10 seconds. It is possible
638 to change this value with "stats timeout". The value must be passed in
Willy Tarreaubefdff12007-12-02 22:27:38 +0100639 milliseconds, or be suffixed by a time unit among { us, ms, s, m, h, d }.
Willy Tarreaufbee7132007-10-18 13:53:22 +0200640
641stats maxconn <connections>
642 By default, the stats socket is limited to 10 concurrent connections. It is
643 possible to change this value with "stats maxconn".
644
Willy Tarreau6a06a402007-07-15 20:15:28 +0200645uid <number>
646 Changes the process' user ID to <number>. It is recommended that the user ID
647 is dedicated to HAProxy or to a small set of similar daemons. HAProxy must
648 be started with superuser privileges in order to be able to switch to another
649 one. See also "gid" and "user".
650
651ulimit-n <number>
652 Sets the maximum number of per-process file-descriptors to <number>. By
653 default, it is automatically computed, so it is recommended not to use this
654 option.
655
Willy Tarreauceb24bc2010-11-09 12:46:41 +0100656unix-bind [ prefix <prefix> ] [ mode <mode> ] [ user <user> ] [ uid <uid> ]
657 [ group <group> ] [ gid <gid> ]
658
659 Fixes common settings to UNIX listening sockets declared in "bind" statements.
660 This is mainly used to simplify declaration of those UNIX sockets and reduce
661 the risk of errors, since those settings are most commonly required but are
662 also process-specific. The <prefix> setting can be used to force all socket
663 path to be relative to that directory. This might be needed to access another
664 component's chroot. Note that those paths are resolved before haproxy chroots
665 itself, so they are absolute. The <mode>, <user>, <uid>, <group> and <gid>
666 all have the same meaning as their homonyms used by the "bind" statement. If
667 both are specified, the "bind" statement has priority, meaning that the
668 "unix-bind" settings may be seen as process-wide default settings.
669
Willy Tarreau6a06a402007-07-15 20:15:28 +0200670user <user name>
671 Similar to "uid" but uses the UID of user name <user name> from /etc/passwd.
672 See also "uid" and "group".
673
Krzysztof Piotr Oledzki48cb2ae2009-10-02 22:51:14 +0200674node <name>
675 Only letters, digits, hyphen and underscore are allowed, like in DNS names.
676
677 This statement is useful in HA configurations where two or more processes or
678 servers share the same IP address. By setting a different node-name on all
679 nodes, it becomes easy to immediately spot what server is handling the
680 traffic.
681
682description <text>
683 Add a text that describes the instance.
684
685 Please note that it is required to escape certain characters (# for example)
686 and this text is inserted into a html page so you should avoid using
687 "<" and ">" characters.
688
Willy Tarreau6a06a402007-07-15 20:15:28 +0200689
Willy Tarreauc57f0e22009-05-10 13:12:33 +02006903.2. Performance tuning
Willy Tarreau6a06a402007-07-15 20:15:28 +0200691-----------------------
692
693maxconn <number>
694 Sets the maximum per-process number of concurrent connections to <number>. It
695 is equivalent to the command-line argument "-n". Proxies will stop accepting
696 connections when this limit is reached. The "ulimit-n" parameter is
697 automatically adjusted according to this value. See also "ulimit-n".
698
Willy Tarreau81c25d02011-09-07 15:17:21 +0200699maxconnrate <number>
700 Sets the maximum per-process number of connections per second to <number>.
701 Proxies will stop accepting connections when this limit is reached. It can be
702 used to limit the global capacity regardless of each frontend capacity. It is
703 important to note that this can only be used as a service protection measure,
704 as there will not necessarily be a fair share between frontends when the
705 limit is reached, so it's a good idea to also limit each frontend to some
706 value close to its expected share. Also, lowering tune.maxaccept can improve
707 fairness.
708
William Lallemandd85f9172012-11-09 17:05:39 +0100709maxcomprate <number>
710 Sets the maximum per-process input compression rate to <number> kilobytes
711 pers second. For each session, if the maximum is reached, the compression
712 level will be decreased during the session. If the maximum is reached at the
713 beginning of a session, the session will not compress at all. If the maximum
714 is not reached, the compression level will be increased up to
715 tune.comp.maxlevel. A value of zero means there is no limit, this is the
716 default value.
717
William Lallemand072a2bf2012-11-20 17:01:01 +0100718maxcompcpuusage <number>
719 Sets the maximum CPU usage HAProxy can reach before stopping the compression
720 for new requests or decreasing the compression level of current requests.
721 It works like 'maxcomprate' but measures CPU usage instead of incoming data
722 bandwidth. The value is expressed in percent of the CPU used by haproxy. In
723 case of multiple processes (nbproc > 1), each process manages its individual
724 usage. A value of 100 disable the limit. The default value is 100. Setting
725 a lower value will prevent the compression work from slowing the whole
726 process down and from introducing high latencies.
727
Willy Tarreauff4f82d2009-02-06 11:28:13 +0100728maxpipes <number>
729 Sets the maximum per-process number of pipes to <number>. Currently, pipes
730 are only used by kernel-based tcp splicing. Since a pipe contains two file
731 descriptors, the "ulimit-n" value will be increased accordingly. The default
732 value is maxconn/4, which seems to be more than enough for most heavy usages.
733 The splice code dynamically allocates and releases pipes, and can fall back
734 to standard copy, so setting this value too low may only impact performance.
735
Willy Tarreau403edff2012-09-06 11:58:37 +0200736maxsslconn <number>
737 Sets the maximum per-process number of concurrent SSL connections to
738 <number>. By default there is no SSL-specific limit, which means that the
739 global maxconn setting will apply to all connections. Setting this limit
740 avoids having openssl use too much memory and crash when malloc returns NULL
741 (since it unfortunately does not reliably check for such conditions). Note
742 that the limit applies both to incoming and outgoing connections, so one
743 connection which is deciphered then ciphered accounts for 2 SSL connections.
744
William Lallemand9d5f5482012-11-07 16:12:57 +0100745maxzlibmem <number>
746 Sets the maximum amount of RAM in megabytes per process usable by the zlib.
747 When the maximum amount is reached, future sessions will not compress as long
748 as RAM is unavailable. When sets to 0, there is no limit.
William Lallemande3a7d992012-11-20 11:25:20 +0100749 The default value is 0. The value is available in bytes on the UNIX socket
750 with "show info" on the line "MaxZlibMemUsage", the memory used by zlib is
751 "ZlibMemUsage" in bytes.
752
Willy Tarreau6a06a402007-07-15 20:15:28 +0200753noepoll
754 Disables the use of the "epoll" event polling system on Linux. It is
755 equivalent to the command-line argument "-de". The next polling system
Willy Tarreaue9f49e72012-11-11 17:42:00 +0100756 used will generally be "poll". See also "nopoll".
Willy Tarreau6a06a402007-07-15 20:15:28 +0200757
758nokqueue
759 Disables the use of the "kqueue" event polling system on BSD. It is
760 equivalent to the command-line argument "-dk". The next polling system
761 used will generally be "poll". See also "nopoll".
762
763nopoll
764 Disables the use of the "poll" event polling system. It is equivalent to the
765 command-line argument "-dp". The next polling system used will be "select".
Willy Tarreau0ba27502007-12-24 16:55:16 +0100766 It should never be needed to disable "poll" since it's available on all
Willy Tarreaue9f49e72012-11-11 17:42:00 +0100767 platforms supported by HAProxy. See also "nokqueue" and "noepoll".
Willy Tarreau6a06a402007-07-15 20:15:28 +0200768
Willy Tarreauff4f82d2009-02-06 11:28:13 +0100769nosplice
770 Disables the use of kernel tcp splicing between sockets on Linux. It is
771 equivalent to the command line argument "-dS". Data will then be copied
772 using conventional and more portable recv/send calls. Kernel tcp splicing is
Krzysztof Piotr Oledzkif8645332009-12-13 21:55:50 +0100773 limited to some very recent instances of kernel 2.6. Most versions between
Willy Tarreauff4f82d2009-02-06 11:28:13 +0100774 2.6.25 and 2.6.28 are buggy and will forward corrupted data, so they must not
775 be used. This option makes it easier to globally disable kernel splicing in
776 case of doubt. See also "option splice-auto", "option splice-request" and
777 "option splice-response".
778
Willy Tarreaufe255b72007-10-14 23:09:26 +0200779spread-checks <0..50, in percent>
780 Sometimes it is desirable to avoid sending health checks to servers at exact
781 intervals, for instance when many logical servers are located on the same
782 physical server. With the help of this parameter, it becomes possible to add
783 some randomness in the check interval between 0 and +/- 50%. A value between
784 2 and 5 seems to show good results. The default value remains at 0.
785
Willy Tarreau27a674e2009-08-17 07:23:33 +0200786tune.bufsize <number>
787 Sets the buffer size to this size (in bytes). Lower values allow more
788 sessions to coexist in the same amount of RAM, and higher values allow some
789 applications with very large cookies to work. The default value is 16384 and
790 can be changed at build time. It is strongly recommended not to change this
791 from the default value, as very low values will break some services such as
792 statistics, and values larger than default size will increase memory usage,
793 possibly causing the system to run out of memory. At least the global maxconn
794 parameter should be decreased by the same factor as this one is increased.
Dmitry Sivachenkof6f4f7b2012-10-21 18:10:25 +0400795 If HTTP request is larger than (tune.bufsize - tune.maxrewrite), haproxy will
796 return HTTP 400 (Bad Request) error. Similarly if an HTTP response is larger
797 than this size, haproxy will return HTTP 502 (Bad Gateway).
Willy Tarreau27a674e2009-08-17 07:23:33 +0200798
Willy Tarreau43961d52010-10-04 20:39:20 +0200799tune.chksize <number>
800 Sets the check buffer size to this size (in bytes). Higher values may help
801 find string or regex patterns in very large pages, though doing so may imply
802 more memory and CPU usage. The default value is 16384 and can be changed at
803 build time. It is not recommended to change this value, but to use better
804 checks whenever possible.
805
William Lallemandf3747832012-11-09 12:33:10 +0100806tune.comp.maxlevel <number>
807 Sets the maximum compression level. The compression level affects CPU
808 usage during compression. This value affects CPU usage during compression.
809 Each session using compression initializes the compression algorithm with
810 this value. The default value is 1.
811
Willy Tarreau193b8c62012-11-22 00:17:38 +0100812tune.http.cookielen <number>
813 Sets the maximum length of captured cookies. This is the maximum value that
814 the "capture cookie xxx len yyy" will be allowed to take, and any upper value
815 will automatically be truncated to this one. It is important not to set too
816 high a value because all cookie captures still allocate this size whatever
817 their configured value (they share a same pool). This value is per request
818 per response, so the memory allocated is twice this value per connection.
819 When not specified, the limit is set to 63 characters. It is recommended not
820 to change this value.
821
Willy Tarreauac1932d2011-10-24 19:14:41 +0200822tune.http.maxhdr <number>
823 Sets the maximum number of headers in a request. When a request comes with a
824 number of headers greater than this value (including the first line), it is
825 rejected with a "400 Bad Request" status code. Similarly, too large responses
826 are blocked with "502 Bad Gateway". The default value is 101, which is enough
827 for all usages, considering that the widely deployed Apache server uses the
828 same limit. It can be useful to push this limit further to temporarily allow
829 a buggy application to work by the time it gets fixed. Keep in mind that each
830 new header consumes 32bits of memory for each session, so don't push this
831 limit too high.
832
Willy Tarreaua0250ba2008-01-06 11:22:57 +0100833tune.maxaccept <number>
Willy Tarreau16a21472012-11-19 12:39:59 +0100834 Sets the maximum number of consecutive connections a process may accept in a
835 row before switching to other work. In single process mode, higher numbers
836 give better performance at high connection rates. However in multi-process
837 modes, keeping a bit of fairness between processes generally is better to
838 increase performance. This value applies individually to each listener, so
839 that the number of processes a listener is bound to is taken into account.
840 This value defaults to 64. In multi-process mode, it is divided by twice
841 the number of processes the listener is bound to. Setting this value to -1
842 completely disables the limitation. It should normally not be needed to tweak
843 this value.
Willy Tarreaua0250ba2008-01-06 11:22:57 +0100844
845tune.maxpollevents <number>
846 Sets the maximum amount of events that can be processed at once in a call to
847 the polling system. The default value is adapted to the operating system. It
848 has been noticed that reducing it below 200 tends to slightly decrease
849 latency at the expense of network bandwidth, and increasing it above 200
850 tends to trade latency for slightly increased bandwidth.
851
Willy Tarreau27a674e2009-08-17 07:23:33 +0200852tune.maxrewrite <number>
853 Sets the reserved buffer space to this size in bytes. The reserved space is
854 used for header rewriting or appending. The first reads on sockets will never
855 fill more than bufsize-maxrewrite. Historically it has defaulted to half of
856 bufsize, though that does not make much sense since there are rarely large
857 numbers of headers to add. Setting it too high prevents processing of large
858 requests or responses. Setting it too low prevents addition of new headers
859 to already large requests or to POST requests. It is generally wise to set it
860 to about 1024. It is automatically readjusted to half of bufsize if it is
861 larger than that. This means you don't have to worry about it when changing
862 bufsize.
863
Willy Tarreaubd9a0a72011-10-23 21:14:29 +0200864tune.pipesize <number>
865 Sets the kernel pipe buffer size to this size (in bytes). By default, pipes
866 are the default size for the system. But sometimes when using TCP splicing,
867 it can improve performance to increase pipe sizes, especially if it is
868 suspected that pipes are not filled and that many calls to splice() are
869 performed. This has an impact on the kernel's memory footprint, so this must
870 not be changed if impacts are not understood.
871
Willy Tarreaue803de22010-01-21 17:43:04 +0100872tune.rcvbuf.client <number>
873tune.rcvbuf.server <number>
874 Forces the kernel socket receive buffer size on the client or the server side
875 to the specified value in bytes. This value applies to all TCP/HTTP frontends
876 and backends. It should normally never be set, and the default size (0) lets
877 the kernel autotune this value depending on the amount of available memory.
878 However it can sometimes help to set it to very low values (eg: 4096) in
879 order to save kernel memory by preventing it from buffering too large amounts
880 of received data. Lower values will significantly increase CPU usage though.
881
882tune.sndbuf.client <number>
883tune.sndbuf.server <number>
884 Forces the kernel socket send buffer size on the client or the server side to
885 the specified value in bytes. This value applies to all TCP/HTTP frontends
886 and backends. It should normally never be set, and the default size (0) lets
887 the kernel autotune this value depending on the amount of available memory.
888 However it can sometimes help to set it to very low values (eg: 4096) in
889 order to save kernel memory by preventing it from buffering too large amounts
890 of received data. Lower values will significantly increase CPU usage though.
891 Another use case is to prevent write timeouts with extremely slow clients due
892 to the kernel waiting for a large part of the buffer to be read before
893 notifying haproxy again.
894
Willy Tarreau6ec58db2012-11-16 16:32:15 +0100895tune.ssl.cachesize <number>
Emeric Brunaf9619d2012-11-28 18:47:52 +0100896 Sets the size of the global SSL session cache, in a number of blocks. A block
897 is large enough to contain an encoded session without peer certificate.
898 An encoded session with peer certificate is stored in multiple blocks
899 depending on the size of the peer certificate. A block use approximatively
900 200 bytes of memory. The default value may be forced at build time, otherwise
901 defaults to 20000. When the cache is full, the most idle entries are purged
902 and reassigned. Higher values reduce the occurrence of such a purge, hence
903 the number of CPU-intensive SSL handshakes by ensuring that all users keep
904 their session as long as possible. All entries are pre-allocated upon startup
Emeric Brun22890a12012-12-28 14:41:32 +0100905 and are shared between all processes if "nbproc" is greater than 1. Setting
906 this value to 0 disables the SSL session cache.
Willy Tarreau6ec58db2012-11-16 16:32:15 +0100907
Emeric Brun4f65bff2012-11-16 15:11:00 +0100908tune.ssl.lifetime <timeout>
909 Sets how long a cached SSL session may remain valid. This time is expressed
910 in seconds and defaults to 300 (5 mn). It is important to understand that it
911 does not guarantee that sessions will last that long, because if the cache is
912 full, the longest idle sessions will be purged despite their configured
913 lifetime. The real usefulness of this setting is to prevent sessions from
914 being used for too long.
915
Willy Tarreaubfd59462013-02-21 07:46:09 +0100916tune.ssl.maxrecord <number>
917 Sets the maximum amount of bytes passed to SSL_write() at a time. Default
918 value 0 means there is no limit. Over SSL/TLS, the client can decipher the
919 data only once it has received a full record. With large records, it means
920 that clients might have to download up to 16kB of data before starting to
921 process them. Limiting the value can improve page load times on browsers
922 located over high latency or low bandwidth networks. It is suggested to find
923 optimal values which fit into 1 or 2 TCP segments (generally 1448 bytes over
924 Ethernet with TCP timestamps enabled, or 1460 when timestamps are disabled),
925 keeping in mind that SSL/TLS add some overhead. Typical values of 1419 and
926 2859 gave good results during tests. Use "strace -e trace=write" to find the
927 best value.
928
William Lallemanda509e4c2012-11-07 16:54:34 +0100929tune.zlib.memlevel <number>
930 Sets the memLevel parameter in zlib initialization for each session. It
931 defines how much memory should be allocated for the intenal compression
932 state. A value of 1 uses minimum memory but is slow and reduces compression
933 ratio, a value of 9 uses maximum memory for optimal speed. Can be a value
934 between 1 and 9. The default value is 8.
935
936tune.zlib.windowsize <number>
937 Sets the window size (the size of the history buffer) as a parameter of the
938 zlib initialization for each session. Larger values of this parameter result
939 in better compression at the expense of memory usage. Can be a value between
940 8 and 15. The default value is 15.
Willy Tarreau6a06a402007-07-15 20:15:28 +0200941
Willy Tarreauc57f0e22009-05-10 13:12:33 +02009423.3. Debugging
943--------------
Willy Tarreau6a06a402007-07-15 20:15:28 +0200944
945debug
946 Enables debug mode which dumps to stdout all exchanges, and disables forking
947 into background. It is the equivalent of the command-line argument "-d". It
948 should never be used in a production configuration since it may prevent full
949 system startup.
950
951quiet
952 Do not display any message during startup. It is equivalent to the command-
953 line argument "-q".
954
Emeric Brunf099e792010-09-27 12:05:28 +0200955
Krzysztof Piotr Oledzki6b35ce12010-02-01 23:35:44 +01009563.4. Userlists
957--------------
958It is possible to control access to frontend/backend/listen sections or to
959http stats by allowing only authenticated and authorized users. To do this,
960it is required to create at least one userlist and to define users.
961
962userlist <listname>
Cyril Bonté78caf842010-03-10 22:41:43 +0100963 Creates new userlist with name <listname>. Many independent userlists can be
Krzysztof Piotr Oledzki6b35ce12010-02-01 23:35:44 +0100964 used to store authentication & authorization data for independent customers.
965
966group <groupname> [users <user>,<user>,(...)]
Cyril Bonté78caf842010-03-10 22:41:43 +0100967 Adds group <groupname> to the current userlist. It is also possible to
Krzysztof Piotr Oledzki6b35ce12010-02-01 23:35:44 +0100968 attach users to this group by using a comma separated list of names
969 proceeded by "users" keyword.
970
Cyril Bontéf0c60612010-02-06 14:44:47 +0100971user <username> [password|insecure-password <password>]
972 [groups <group>,<group>,(...)]
Krzysztof Piotr Oledzki6b35ce12010-02-01 23:35:44 +0100973 Adds user <username> to the current userlist. Both secure (encrypted) and
974 insecure (unencrypted) passwords can be used. Encrypted passwords are
Cyril Bonté78caf842010-03-10 22:41:43 +0100975 evaluated using the crypt(3) function so depending of the system's
976 capabilities, different algorithms are supported. For example modern Glibc
Krzysztof Piotr Oledzki6b35ce12010-02-01 23:35:44 +0100977 based Linux system supports MD5, SHA-256, SHA-512 and of course classic,
978 DES-based method of crypting passwords.
979
980
981 Example:
Cyril Bontéf0c60612010-02-06 14:44:47 +0100982 userlist L1
983 group G1 users tiger,scott
984 group G2 users xdb,scott
Krzysztof Piotr Oledzki6b35ce12010-02-01 23:35:44 +0100985
Cyril Bontéf0c60612010-02-06 14:44:47 +0100986 user tiger password $6$k6y3o.eP$JlKBx9za9667qe4(...)xHSwRv6J.C0/D7cV91
987 user scott insecure-password elgato
988 user xdb insecure-password hello
Krzysztof Piotr Oledzki6b35ce12010-02-01 23:35:44 +0100989
Cyril Bontéf0c60612010-02-06 14:44:47 +0100990 userlist L2
991 group G1
992 group G2
Krzysztof Piotr Oledzki6b35ce12010-02-01 23:35:44 +0100993
Cyril Bontéf0c60612010-02-06 14:44:47 +0100994 user tiger password $6$k6y3o.eP$JlKBx(...)xHSwRv6J.C0/D7cV91 groups G1
995 user scott insecure-password elgato groups G1,G2
996 user xdb insecure-password hello groups G2
Krzysztof Piotr Oledzki6b35ce12010-02-01 23:35:44 +0100997
998 Please note that both lists are functionally identical.
Willy Tarreau6a06a402007-07-15 20:15:28 +0200999
Emeric Brunf099e792010-09-27 12:05:28 +02001000
10013.5. Peers
Cyril Bontédc4d9032012-04-08 21:57:39 +02001002----------
Emeric Brunf099e792010-09-27 12:05:28 +02001003It is possible to synchronize server entries in stick tables between several
1004haproxy instances over TCP connections in a multi-master fashion. Each instance
1005pushes its local updates and insertions to remote peers. Server IDs are used to
1006identify servers remotely, so it is important that configurations look similar
1007or at least that the same IDs are forced on each server on all participants.
1008Interrupted exchanges are automatically detected and recovered from the last
1009known point. In addition, during a soft restart, the old process connects to
1010the new one using such a TCP connection to push all its entries before the new
1011process tries to connect to other peers. That ensures very fast replication
1012during a reload, it typically takes a fraction of a second even for large
1013tables.
1014
1015peers <peersect>
Jamie Gloudon801a0a32012-08-25 00:18:33 -04001016 Creates a new peer list with name <peersect>. It is an independent section,
Emeric Brunf099e792010-09-27 12:05:28 +02001017 which is referenced by one or more stick-tables.
1018
1019peer <peername> <ip>:<port>
1020 Defines a peer inside a peers section.
1021 If <peername> is set to the local peer name (by default hostname, or forced
1022 using "-L" command line option), haproxy will listen for incoming remote peer
1023 connection on <ip>:<port>. Otherwise, <ip>:<port> defines where to connect to
1024 to join the remote peer, and <peername> is used at the protocol level to
1025 identify and validate the remote peer on the server side.
1026
1027 During a soft restart, local peer <ip>:<port> is used by the old instance to
1028 connect the new one and initiate a complete replication (teaching process).
1029
1030 It is strongly recommended to have the exact same peers declaration on all
1031 peers and to only rely on the "-L" command line argument to change the local
1032 peer name. This makes it easier to maintain coherent configuration files
1033 across all peers.
1034
Willy Tarreaudad36a32013-03-11 01:20:04 +01001035 Any part of the address string may reference any number of environment
1036 variables by preceding their name with a dollar sign ('$') and optionally
1037 enclosing them with braces ('{}'), similarly to what is done in Bourne shell.
1038
Cyril Bontédc4d9032012-04-08 21:57:39 +02001039 Example:
Emeric Brunf099e792010-09-27 12:05:28 +02001040 peers mypeers
Willy Tarreauf7b30a92010-12-06 22:59:17 +01001041 peer haproxy1 192.168.0.1:1024
1042 peer haproxy2 192.168.0.2:1024
1043 peer haproxy3 10.2.0.1:1024
Emeric Brunf099e792010-09-27 12:05:28 +02001044
1045 backend mybackend
1046 mode tcp
1047 balance roundrobin
1048 stick-table type ip size 20k peers mypeers
1049 stick on src
1050
Willy Tarreauf7b30a92010-12-06 22:59:17 +01001051 server srv1 192.168.0.30:80
1052 server srv2 192.168.0.31:80
Emeric Brunf099e792010-09-27 12:05:28 +02001053
1054
Willy Tarreauc57f0e22009-05-10 13:12:33 +020010554. Proxies
Willy Tarreau6a06a402007-07-15 20:15:28 +02001056----------
Willy Tarreau0ba27502007-12-24 16:55:16 +01001057
Willy Tarreau6a06a402007-07-15 20:15:28 +02001058Proxy configuration can be located in a set of sections :
1059 - defaults <name>
1060 - frontend <name>
1061 - backend <name>
1062 - listen <name>
1063
1064A "defaults" section sets default parameters for all other sections following
1065its declaration. Those default parameters are reset by the next "defaults"
1066section. See below for the list of parameters which can be set in a "defaults"
Willy Tarreau0ba27502007-12-24 16:55:16 +01001067section. The name is optional but its use is encouraged for better readability.
Willy Tarreau6a06a402007-07-15 20:15:28 +02001068
1069A "frontend" section describes a set of listening sockets accepting client
1070connections.
1071
1072A "backend" section describes a set of servers to which the proxy will connect
1073to forward incoming connections.
1074
1075A "listen" section defines a complete proxy with its frontend and backend
1076parts combined in one section. It is generally useful for TCP-only traffic.
1077
Willy Tarreau0ba27502007-12-24 16:55:16 +01001078All proxy names must be formed from upper and lower case letters, digits,
1079'-' (dash), '_' (underscore) , '.' (dot) and ':' (colon). ACL names are
1080case-sensitive, which means that "www" and "WWW" are two different proxies.
1081
1082Historically, all proxy names could overlap, it just caused troubles in the
1083logs. Since the introduction of content switching, it is mandatory that two
1084proxies with overlapping capabilities (frontend/backend) have different names.
1085However, it is still permitted that a frontend and a backend share the same
1086name, as this configuration seems to be commonly encountered.
1087
1088Right now, two major proxy modes are supported : "tcp", also known as layer 4,
1089and "http", also known as layer 7. In layer 4 mode, HAProxy simply forwards
Krzysztof Piotr Oledzkif8645332009-12-13 21:55:50 +01001090bidirectional traffic between two sides. In layer 7 mode, HAProxy analyzes the
Willy Tarreau0ba27502007-12-24 16:55:16 +01001091protocol, and can interact with it by allowing, blocking, switching, adding,
1092modifying, or removing arbitrary contents in requests or responses, based on
1093arbitrary criteria.
1094
Willy Tarreau0ba27502007-12-24 16:55:16 +01001095
Willy Tarreauc57f0e22009-05-10 13:12:33 +020010964.1. Proxy keywords matrix
1097--------------------------
Willy Tarreau0ba27502007-12-24 16:55:16 +01001098
Willy Tarreauc57f0e22009-05-10 13:12:33 +02001099The following list of keywords is supported. Most of them may only be used in a
1100limited set of section types. Some of them are marked as "deprecated" because
1101they are inherited from an old syntax which may be confusing or functionally
1102limited, and there are new recommended keywords to replace them. Keywords
Willy Tarreau5c6f7b32010-02-26 13:34:29 +01001103marked with "(*)" can be optionally inverted using the "no" prefix, eg. "no
Willy Tarreauc57f0e22009-05-10 13:12:33 +02001104option contstats". This makes sense when the option has been enabled by default
Willy Tarreau3842f002009-06-14 11:39:52 +02001105and must be disabled for a specific instance. Such options may also be prefixed
1106with "default" in order to restore default settings regardless of what has been
1107specified in a previous "defaults" section.
Willy Tarreau0ba27502007-12-24 16:55:16 +01001108
Willy Tarreau6a06a402007-07-15 20:15:28 +02001109
Willy Tarreau5c6f7b32010-02-26 13:34:29 +01001110 keyword defaults frontend listen backend
1111------------------------------------+----------+----------+---------+---------
1112acl - X X X
1113appsession - - X X
1114backlog X X X -
1115balance X - X X
1116bind - X X -
1117bind-process X X X X
1118block - X X X
1119capture cookie - X X -
1120capture request header - X X -
1121capture response header - X X -
1122clitimeout (deprecated) X X X -
William Lallemand82fe75c2012-10-23 10:25:10 +02001123compression X X X X
Willy Tarreau5c6f7b32010-02-26 13:34:29 +01001124contimeout (deprecated) X - X X
1125cookie X - X X
1126default-server X - X X
1127default_backend X X X -
1128description - X X X
1129disabled X X X X
1130dispatch - - X X
1131enabled X X X X
1132errorfile X X X X
1133errorloc X X X X
1134errorloc302 X X X X
1135-- keyword -------------------------- defaults - frontend - listen -- backend -
1136errorloc303 X X X X
Cyril Bonté0d4bf012010-04-25 23:21:46 +02001137force-persist - X X X
Willy Tarreau5c6f7b32010-02-26 13:34:29 +01001138fullconn X - X X
1139grace X X X X
1140hash-type X - X X
1141http-check disable-on-404 X - X X
Willy Tarreaubd741542010-03-16 18:46:54 +01001142http-check expect - - X X
Willy Tarreau7ab6aff2010-10-12 06:30:16 +02001143http-check send-state X - X X
Willy Tarreau5c6f7b32010-02-26 13:34:29 +01001144http-request - X X X
Willy Tarreaue365c0b2013-06-11 16:06:12 +02001145http-response - X X X
Baptiste Assmann2c42ef52013-10-09 21:57:02 +02001146http-send-name-header - - X X
Willy Tarreau5c6f7b32010-02-26 13:34:29 +01001147id - X X X
Cyril Bonté0d4bf012010-04-25 23:21:46 +02001148ignore-persist - X X X
William Lallemand0f99e342011-10-12 17:50:54 +02001149log (*) X X X X
Willy Tarreau5c6f7b32010-02-26 13:34:29 +01001150maxconn X X X -
1151mode X X X X
1152monitor fail - X X -
1153monitor-net X X X -
1154monitor-uri X X X -
1155option abortonclose (*) X - X X
1156option accept-invalid-http-request (*) X X X -
1157option accept-invalid-http-response (*) X - X X
1158option allbackups (*) X - X X
1159option checkcache (*) X - X X
1160option clitcpka (*) X X X -
1161option contstats (*) X X X -
1162option dontlog-normal (*) X X X -
1163option dontlognull (*) X X X -
1164option forceclose (*) X X X X
1165-- keyword -------------------------- defaults - frontend - listen -- backend -
1166option forwardfor X X X X
Willy Tarreau96e31212011-05-30 18:10:30 +02001167option http-no-delay (*) X X X X
Willy Tarreau8a8e1d92010-04-05 16:15:16 +02001168option http-pretend-keepalive (*) X X X X
Willy Tarreau5c6f7b32010-02-26 13:34:29 +01001169option http-server-close (*) X X X X
1170option http-use-proxy-header (*) X X X -
1171option httpchk X - X X
1172option httpclose (*) X X X X
1173option httplog X X X X
1174option http_proxy (*) X X X X
Jamie Gloudon801a0a32012-08-25 00:18:33 -04001175option independent-streams (*) X X X X
Simon Hormana2b9dad2013-02-12 10:45:54 +09001176option lb-agent-chk X - X X
Gabor Lekenyb4c81e42010-09-29 18:17:05 +02001177option ldap-check X - X X
Willy Tarreau5c6f7b32010-02-26 13:34:29 +01001178option log-health-checks (*) X - X X
1179option log-separate-errors (*) X X X -
1180option logasap (*) X X X -
1181option mysql-check X - X X
Rauf Kuliyev38b41562011-01-04 15:14:13 +01001182option pgsql-check X - X X
Willy Tarreau5c6f7b32010-02-26 13:34:29 +01001183option nolinger (*) X X X X
1184option originalto X X X X
1185option persist (*) X - X X
1186option redispatch (*) X - X X
Hervé COMMOWICKec032d62011-08-05 16:23:48 +02001187option redis-check X - X X
Willy Tarreau5c6f7b32010-02-26 13:34:29 +01001188option smtpchk X - X X
1189option socket-stats (*) X X X -
1190option splice-auto (*) X X X X
1191option splice-request (*) X X X X
1192option splice-response (*) X X X X
1193option srvtcpka (*) X - X X
1194option ssl-hello-chk X - X X
1195-- keyword -------------------------- defaults - frontend - listen -- backend -
1196option tcp-smart-accept (*) X X X -
1197option tcp-smart-connect (*) X - X X
1198option tcpka X X X X
1199option tcplog X X X X
1200option transparent (*) X - X X
1201persist rdp-cookie X - X X
1202rate-limit sessions X X X -
1203redirect - X X X
1204redisp (deprecated) X - X X
1205redispatch (deprecated) X - X X
1206reqadd - X X X
1207reqallow - X X X
1208reqdel - X X X
1209reqdeny - X X X
1210reqiallow - X X X
1211reqidel - X X X
1212reqideny - X X X
1213reqipass - X X X
1214reqirep - X X X
1215reqisetbe - X X X
1216reqitarpit - X X X
1217reqpass - X X X
1218reqrep - X X X
1219-- keyword -------------------------- defaults - frontend - listen -- backend -
1220reqsetbe - X X X
1221reqtarpit - X X X
1222retries X - X X
1223rspadd - X X X
1224rspdel - X X X
1225rspdeny - X X X
1226rspidel - X X X
1227rspideny - X X X
1228rspirep - X X X
1229rsprep - X X X
1230server - - X X
1231source X - X X
1232srvtimeout (deprecated) X - X X
Cyril Bonté66c327d2010-10-12 00:14:37 +02001233stats admin - - X X
Willy Tarreau5c6f7b32010-02-26 13:34:29 +01001234stats auth X - X X
1235stats enable X - X X
1236stats hide-version X - X X
Cyril Bonté2be1b3f2010-09-30 23:46:30 +02001237stats http-request - - X X
Willy Tarreau5c6f7b32010-02-26 13:34:29 +01001238stats realm X - X X
1239stats refresh X - X X
1240stats scope X - X X
1241stats show-desc X - X X
1242stats show-legends X - X X
1243stats show-node X - X X
1244stats uri X - X X
1245-- keyword -------------------------- defaults - frontend - listen -- backend -
1246stick match - - X X
1247stick on - - X X
1248stick store-request - - X X
Willy Tarreaud8dc99f2011-07-01 11:33:25 +02001249stick store-response - - X X
Willy Tarreau5c6f7b32010-02-26 13:34:29 +01001250stick-table - - X X
Willy Tarreaue9656522010-08-17 15:40:09 +02001251tcp-request connection - X X -
1252tcp-request content - X X X
Willy Tarreaua56235c2010-09-14 11:31:36 +02001253tcp-request inspect-delay - X X X
Emeric Brun0a3b67f2010-09-24 15:34:53 +02001254tcp-response content - - X X
1255tcp-response inspect-delay - - X X
Willy Tarreau5c6f7b32010-02-26 13:34:29 +01001256timeout check X - X X
1257timeout client X X X -
1258timeout clitimeout (deprecated) X X X -
1259timeout connect X - X X
1260timeout contimeout (deprecated) X - X X
1261timeout http-keep-alive X X X X
1262timeout http-request X X X X
1263timeout queue X - X X
1264timeout server X - X X
1265timeout srvtimeout (deprecated) X - X X
1266timeout tarpit X X X X
Willy Tarreauce887fd2012-05-12 12:50:00 +02001267timeout tunnel X - X X
Willy Tarreau5c6f7b32010-02-26 13:34:29 +01001268transparent (deprecated) X - X X
William Lallemanda73203e2012-03-12 12:48:57 +01001269unique-id-format X X X -
1270unique-id-header X X X -
Willy Tarreau5c6f7b32010-02-26 13:34:29 +01001271use_backend - X X -
Willy Tarreau4a5cade2012-04-05 21:09:48 +02001272use-server - - X X
Willy Tarreau5c6f7b32010-02-26 13:34:29 +01001273------------------------------------+----------+----------+---------+---------
1274 keyword defaults frontend listen backend
Willy Tarreau6a06a402007-07-15 20:15:28 +02001275
Willy Tarreau0ba27502007-12-24 16:55:16 +01001276
Willy Tarreauc57f0e22009-05-10 13:12:33 +020012774.2. Alphabetically sorted keywords reference
1278---------------------------------------------
Willy Tarreau0ba27502007-12-24 16:55:16 +01001279
1280This section provides a description of each keyword and its usage.
1281
1282
1283acl <aclname> <criterion> [flags] [operator] <value> ...
1284 Declare or complete an access list.
1285 May be used in sections : defaults | frontend | listen | backend
1286 no | yes | yes | yes
1287 Example:
1288 acl invalid_src src 0.0.0.0/7 224.0.0.0/3
1289 acl invalid_src src_port 0:1023
1290 acl local_dst hdr(host) -i localhost
1291
Willy Tarreauc57f0e22009-05-10 13:12:33 +02001292 See section 7 about ACL usage.
Willy Tarreau0ba27502007-12-24 16:55:16 +01001293
1294
Cyril Bontéb21570a2009-11-29 20:04:48 +01001295appsession <cookie> len <length> timeout <holdtime>
1296 [request-learn] [prefix] [mode <path-parameters|query-string>]
Willy Tarreau0ba27502007-12-24 16:55:16 +01001297 Define session stickiness on an existing application cookie.
1298 May be used in sections : defaults | frontend | listen | backend
1299 no | no | yes | yes
1300 Arguments :
1301 <cookie> this is the name of the cookie used by the application and which
1302 HAProxy will have to learn for each new session.
1303
Cyril Bontéb21570a2009-11-29 20:04:48 +01001304 <length> this is the max number of characters that will be memorized and
Willy Tarreau0ba27502007-12-24 16:55:16 +01001305 checked in each cookie value.
1306
1307 <holdtime> this is the time after which the cookie will be removed from
1308 memory if unused. If no unit is specified, this time is in
1309 milliseconds.
1310
Cyril Bontébf47aeb2009-10-15 00:15:40 +02001311 request-learn
1312 If this option is specified, then haproxy will be able to learn
1313 the cookie found in the request in case the server does not
1314 specify any in response. This is typically what happens with
1315 PHPSESSID cookies, or when haproxy's session expires before
1316 the application's session and the correct server is selected.
1317 It is recommended to specify this option to improve reliability.
1318
Cyril Bontéb21570a2009-11-29 20:04:48 +01001319 prefix When this option is specified, haproxy will match on the cookie
1320 prefix (or URL parameter prefix). The appsession value is the
1321 data following this prefix.
1322
1323 Example :
1324 appsession ASPSESSIONID len 64 timeout 3h prefix
1325
1326 This will match the cookie ASPSESSIONIDXXXX=XXXXX,
1327 the appsession value will be XXXX=XXXXX.
1328
1329 mode This option allows to change the URL parser mode.
1330 2 modes are currently supported :
1331 - path-parameters :
1332 The parser looks for the appsession in the path parameters
1333 part (each parameter is separated by a semi-colon), which is
1334 convenient for JSESSIONID for example.
1335 This is the default mode if the option is not set.
1336 - query-string :
1337 In this mode, the parser will look for the appsession in the
1338 query string.
1339
Willy Tarreau0ba27502007-12-24 16:55:16 +01001340 When an application cookie is defined in a backend, HAProxy will check when
1341 the server sets such a cookie, and will store its value in a table, and
1342 associate it with the server's identifier. Up to <length> characters from
1343 the value will be retained. On each connection, haproxy will look for this
Cyril Bontéb21570a2009-11-29 20:04:48 +01001344 cookie both in the "Cookie:" headers, and as a URL parameter (depending on
1345 the mode used). If a known value is found, the client will be directed to the
1346 server associated with this value. Otherwise, the load balancing algorithm is
Willy Tarreau0ba27502007-12-24 16:55:16 +01001347 applied. Cookies are automatically removed from memory when they have been
1348 unused for a duration longer than <holdtime>.
1349
1350 The definition of an application cookie is limited to one per backend.
1351
Cyril Bonté02ff8ef2010-12-14 22:48:49 +01001352 Note : Consider not using this feature in multi-process mode (nbproc > 1)
1353 unless you know what you do : memory is not shared between the
1354 processes, which can result in random behaviours.
1355
Willy Tarreau0ba27502007-12-24 16:55:16 +01001356 Example :
1357 appsession JSESSIONID len 52 timeout 3h
1358
Cyril Bonté02ff8ef2010-12-14 22:48:49 +01001359 See also : "cookie", "capture cookie", "balance", "stick", "stick-table",
1360 "ignore-persist", "nbproc" and "bind-process".
Willy Tarreau0ba27502007-12-24 16:55:16 +01001361
1362
Willy Tarreauc73ce2b2008-01-06 10:55:10 +01001363backlog <conns>
1364 Give hints to the system about the approximate listen backlog desired size
1365 May be used in sections : defaults | frontend | listen | backend
1366 yes | yes | yes | no
1367 Arguments :
1368 <conns> is the number of pending connections. Depending on the operating
1369 system, it may represent the number of already acknowledged
Cyril Bontédc4d9032012-04-08 21:57:39 +02001370 connections, of non-acknowledged ones, or both.
Willy Tarreauc73ce2b2008-01-06 10:55:10 +01001371
1372 In order to protect against SYN flood attacks, one solution is to increase
1373 the system's SYN backlog size. Depending on the system, sometimes it is just
1374 tunable via a system parameter, sometimes it is not adjustable at all, and
1375 sometimes the system relies on hints given by the application at the time of
1376 the listen() syscall. By default, HAProxy passes the frontend's maxconn value
1377 to the listen() syscall. On systems which can make use of this value, it can
1378 sometimes be useful to be able to specify a different value, hence this
1379 backlog parameter.
1380
1381 On Linux 2.4, the parameter is ignored by the system. On Linux 2.6, it is
1382 used as a hint and the system accepts up to the smallest greater power of
1383 two, and never more than some limits (usually 32768).
1384
1385 See also : "maxconn" and the target operating system's tuning guide.
1386
1387
Willy Tarreau0ba27502007-12-24 16:55:16 +01001388balance <algorithm> [ <arguments> ]
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +02001389balance url_param <param> [check_post [<max_wait>]]
Willy Tarreau0ba27502007-12-24 16:55:16 +01001390 Define the load balancing algorithm to be used in a backend.
1391 May be used in sections : defaults | frontend | listen | backend
1392 yes | no | yes | yes
1393 Arguments :
1394 <algorithm> is the algorithm used to select a server when doing load
1395 balancing. This only applies when no persistence information
1396 is available, or when a connection is redispatched to another
1397 server. <algorithm> may be one of the following :
1398
1399 roundrobin Each server is used in turns, according to their weights.
1400 This is the smoothest and fairest algorithm when the server's
1401 processing time remains equally distributed. This algorithm
1402 is dynamic, which means that server weights may be adjusted
Willy Tarreau9757a382009-10-03 12:56:50 +02001403 on the fly for slow starts for instance. It is limited by
Godbacha34bdc02013-07-22 07:44:53 +08001404 design to 4095 active servers per backend. Note that in some
Willy Tarreau9757a382009-10-03 12:56:50 +02001405 large farms, when a server becomes up after having been down
1406 for a very short time, it may sometimes take a few hundreds
1407 requests for it to be re-integrated into the farm and start
1408 receiving traffic. This is normal, though very rare. It is
1409 indicated here in case you would have the chance to observe
1410 it, so that you don't worry.
1411
1412 static-rr Each server is used in turns, according to their weights.
1413 This algorithm is as similar to roundrobin except that it is
1414 static, which means that changing a server's weight on the
1415 fly will have no effect. On the other hand, it has no design
1416 limitation on the number of servers, and when a server goes
1417 up, it is always immediately reintroduced into the farm, once
1418 the full map is recomputed. It also uses slightly less CPU to
1419 run (around -1%).
Willy Tarreau0ba27502007-12-24 16:55:16 +01001420
Willy Tarreau2d2a7f82008-03-17 12:07:56 +01001421 leastconn The server with the lowest number of connections receives the
1422 connection. Round-robin is performed within groups of servers
1423 of the same load to ensure that all servers will be used. Use
1424 of this algorithm is recommended where very long sessions are
1425 expected, such as LDAP, SQL, TSE, etc... but is not very well
1426 suited for protocols using short sessions such as HTTP. This
1427 algorithm is dynamic, which means that server weights may be
1428 adjusted on the fly for slow starts for instance.
1429
Willy Tarreauf09c6602012-02-13 17:12:08 +01001430 first The first server with available connection slots receives the
1431 connection. The servers are choosen from the lowest numeric
1432 identifier to the highest (see server parameter "id"), which
1433 defaults to the server's position in the farm. Once a server
Willy Tarreau64559c52012-04-07 09:08:45 +02001434 reaches its maxconn value, the next server is used. It does
Willy Tarreauf09c6602012-02-13 17:12:08 +01001435 not make sense to use this algorithm without setting maxconn.
1436 The purpose of this algorithm is to always use the smallest
1437 number of servers so that extra servers can be powered off
1438 during non-intensive hours. This algorithm ignores the server
1439 weight, and brings more benefit to long session such as RDP
Willy Tarreau64559c52012-04-07 09:08:45 +02001440 or IMAP than HTTP, though it can be useful there too. In
1441 order to use this algorithm efficiently, it is recommended
1442 that a cloud controller regularly checks server usage to turn
1443 them off when unused, and regularly checks backend queue to
1444 turn new servers on when the queue inflates. Alternatively,
1445 using "http-check send-state" may inform servers on the load.
Willy Tarreauf09c6602012-02-13 17:12:08 +01001446
Willy Tarreau0ba27502007-12-24 16:55:16 +01001447 source The source IP address is hashed and divided by the total
1448 weight of the running servers to designate which server will
1449 receive the request. This ensures that the same client IP
1450 address will always reach the same server as long as no
1451 server goes down or up. If the hash result changes due to the
1452 number of running servers changing, many clients will be
1453 directed to a different server. This algorithm is generally
1454 used in TCP mode where no cookie may be inserted. It may also
Krzysztof Piotr Oledzkif8645332009-12-13 21:55:50 +01001455 be used on the Internet to provide a best-effort stickiness
Willy Tarreau0ba27502007-12-24 16:55:16 +01001456 to clients which refuse session cookies. This algorithm is
Willy Tarreau6b2e11b2009-10-01 07:52:15 +02001457 static by default, which means that changing a server's
1458 weight on the fly will have no effect, but this can be
1459 changed using "hash-type".
Willy Tarreau0ba27502007-12-24 16:55:16 +01001460
Oskar Stolc8dc41842012-05-19 10:19:54 +01001461 uri This algorithm hashes either the left part of the URI (before
1462 the question mark) or the whole URI (if the "whole" parameter
1463 is present) and divides the hash value by the total weight of
1464 the running servers. The result designates which server will
1465 receive the request. This ensures that the same URI will
1466 always be directed to the same server as long as no server
1467 goes up or down. This is used with proxy caches and
1468 anti-virus proxies in order to maximize the cache hit rate.
1469 Note that this algorithm may only be used in an HTTP backend.
1470 This algorithm is static by default, which means that
1471 changing a server's weight on the fly will have no effect,
1472 but this can be changed using "hash-type".
Willy Tarreau0ba27502007-12-24 16:55:16 +01001473
Oskar Stolc8dc41842012-05-19 10:19:54 +01001474 This algorithm supports two optional parameters "len" and
Marek Majkowski9c30fc12008-04-27 23:25:55 +02001475 "depth", both followed by a positive integer number. These
1476 options may be helpful when it is needed to balance servers
1477 based on the beginning of the URI only. The "len" parameter
1478 indicates that the algorithm should only consider that many
1479 characters at the beginning of the URI to compute the hash.
1480 Note that having "len" set to 1 rarely makes sense since most
1481 URIs start with a leading "/".
1482
1483 The "depth" parameter indicates the maximum directory depth
1484 to be used to compute the hash. One level is counted for each
1485 slash in the request. If both parameters are specified, the
1486 evaluation stops when either is reached.
1487
Willy Tarreau0ba27502007-12-24 16:55:16 +01001488 url_param The URL parameter specified in argument will be looked up in
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +02001489 the query string of each HTTP GET request.
1490
1491 If the modifier "check_post" is used, then an HTTP POST
Cyril Bontédc4d9032012-04-08 21:57:39 +02001492 request entity will be searched for the parameter argument,
1493 when it is not found in a query string after a question mark
1494 ('?') in the URL. Optionally, specify a number of octets to
1495 wait for before attempting to search the message body. If the
1496 entity can not be searched, then round robin is used for each
1497 request. For instance, if your clients always send the LB
1498 parameter in the first 128 bytes, then specify that. The
1499 default is 48. The entity data will not be scanned until the
1500 required number of octets have arrived at the gateway, this
1501 is the minimum of: (default/max_wait, Content-Length or first
1502 chunk length). If Content-Length is missing or zero, it does
1503 not need to wait for more data than the client promised to
1504 send. When Content-Length is present and larger than
1505 <max_wait>, then waiting is limited to <max_wait> and it is
1506 assumed that this will be enough data to search for the
1507 presence of the parameter. In the unlikely event that
1508 Transfer-Encoding: chunked is used, only the first chunk is
1509 scanned. Parameter values separated by a chunk boundary, may
1510 be randomly balanced if at all.
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +02001511
1512 If the parameter is found followed by an equal sign ('=') and
1513 a value, then the value is hashed and divided by the total
1514 weight of the running servers. The result designates which
1515 server will receive the request.
1516
1517 This is used to track user identifiers in requests and ensure
1518 that a same user ID will always be sent to the same server as
1519 long as no server goes up or down. If no value is found or if
1520 the parameter is not found, then a round robin algorithm is
1521 applied. Note that this algorithm may only be used in an HTTP
Willy Tarreau6b2e11b2009-10-01 07:52:15 +02001522 backend. This algorithm is static by default, which means
1523 that changing a server's weight on the fly will have no
1524 effect, but this can be changed using "hash-type".
Willy Tarreau0ba27502007-12-24 16:55:16 +01001525
Cyril Bontédc4d9032012-04-08 21:57:39 +02001526 hdr(<name>) The HTTP header <name> will be looked up in each HTTP
1527 request. Just as with the equivalent ACL 'hdr()' function,
1528 the header name in parenthesis is not case sensitive. If the
1529 header is absent or if it does not contain any value, the
1530 roundrobin algorithm is applied instead.
Benoitaffb4812009-03-25 13:02:10 +01001531
Krzysztof Piotr Oledzkif8645332009-12-13 21:55:50 +01001532 An optional 'use_domain_only' parameter is available, for
Benoitaffb4812009-03-25 13:02:10 +01001533 reducing the hash algorithm to the main domain part with some
1534 specific headers such as 'Host'. For instance, in the Host
1535 value "haproxy.1wt.eu", only "1wt" will be considered.
1536
Willy Tarreau6b2e11b2009-10-01 07:52:15 +02001537 This algorithm is static by default, which means that
1538 changing a server's weight on the fly will have no effect,
1539 but this can be changed using "hash-type".
1540
Emeric Brun736aa232009-06-30 17:56:00 +02001541 rdp-cookie
Hervé COMMOWICKa3eb39c2011-08-05 18:48:51 +02001542 rdp-cookie(<name>)
Emeric Brun736aa232009-06-30 17:56:00 +02001543 The RDP cookie <name> (or "mstshash" if omitted) will be
1544 looked up and hashed for each incoming TCP request. Just as
1545 with the equivalent ACL 'req_rdp_cookie()' function, the name
1546 is not case-sensitive. This mechanism is useful as a degraded
1547 persistence mode, as it makes it possible to always send the
1548 same user (or the same session ID) to the same server. If the
Krzysztof Piotr Oledzkif8645332009-12-13 21:55:50 +01001549 cookie is not found, the normal roundrobin algorithm is
Emeric Brun736aa232009-06-30 17:56:00 +02001550 used instead.
1551
1552 Note that for this to work, the frontend must ensure that an
1553 RDP cookie is already present in the request buffer. For this
1554 you must use 'tcp-request content accept' rule combined with
1555 a 'req_rdp_cookie_cnt' ACL.
1556
Willy Tarreau6b2e11b2009-10-01 07:52:15 +02001557 This algorithm is static by default, which means that
1558 changing a server's weight on the fly will have no effect,
1559 but this can be changed using "hash-type".
1560
Cyril Bontédc4d9032012-04-08 21:57:39 +02001561 See also the rdp_cookie pattern fetch function.
Simon Hormanab814e02011-06-24 14:50:20 +09001562
Willy Tarreau0ba27502007-12-24 16:55:16 +01001563 <arguments> is an optional list of arguments which may be needed by some
Marek Majkowski9c30fc12008-04-27 23:25:55 +02001564 algorithms. Right now, only "url_param" and "uri" support an
1565 optional argument.
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +02001566
Marek Majkowski9c30fc12008-04-27 23:25:55 +02001567 balance uri [len <len>] [depth <depth>]
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +02001568 balance url_param <param> [check_post [<max_wait>]]
Willy Tarreau0ba27502007-12-24 16:55:16 +01001569
Willy Tarreau3cd9af22009-03-15 14:06:41 +01001570 The load balancing algorithm of a backend is set to roundrobin when no other
1571 algorithm, mode nor option have been set. The algorithm may only be set once
1572 for each backend.
Willy Tarreau0ba27502007-12-24 16:55:16 +01001573
1574 Examples :
1575 balance roundrobin
1576 balance url_param userid
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +02001577 balance url_param session_id check_post 64
Benoitaffb4812009-03-25 13:02:10 +01001578 balance hdr(User-Agent)
1579 balance hdr(host)
1580 balance hdr(Host) use_domain_only
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +02001581
1582 Note: the following caveats and limitations on using the "check_post"
1583 extension with "url_param" must be considered :
1584
Krzysztof Piotr Oledzkif8645332009-12-13 21:55:50 +01001585 - all POST requests are eligible for consideration, because there is no way
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +02001586 to determine if the parameters will be found in the body or entity which
1587 may contain binary data. Therefore another method may be required to
1588 restrict consideration of POST requests that have no URL parameters in
1589 the body. (see acl reqideny http_end)
1590
1591 - using a <max_wait> value larger than the request buffer size does not
1592 make sense and is useless. The buffer size is set at build time, and
1593 defaults to 16 kB.
1594
1595 - Content-Encoding is not supported, the parameter search will probably
1596 fail; and load balancing will fall back to Round Robin.
1597
1598 - Expect: 100-continue is not supported, load balancing will fall back to
1599 Round Robin.
1600
1601 - Transfer-Encoding (RFC2616 3.6.1) is only supported in the first chunk.
1602 If the entire parameter value is not present in the first chunk, the
1603 selection of server is undefined (actually, defined by how little
1604 actually appeared in the first chunk).
1605
1606 - This feature does not support generation of a 100, 411 or 501 response.
1607
1608 - In some cases, requesting "check_post" MAY attempt to scan the entire
Krzysztof Piotr Oledzkif8645332009-12-13 21:55:50 +01001609 contents of a message body. Scanning normally terminates when linear
matt.farnsworth@nokia.com1c2ab962008-04-14 20:47:37 +02001610 white space or control characters are found, indicating the end of what
1611 might be a URL parameter list. This is probably not a concern with SGML
1612 type message bodies.
Willy Tarreau0ba27502007-12-24 16:55:16 +01001613
Willy Tarreau6b2e11b2009-10-01 07:52:15 +02001614 See also : "dispatch", "cookie", "appsession", "transparent", "hash-type" and
1615 "http_proxy".
Willy Tarreau0ba27502007-12-24 16:55:16 +01001616
1617
Willy Tarreaub6205fd2012-09-24 12:27:33 +02001618bind [<address>]:<port_range> [, ...] [param*]
1619bind /<path> [, ...] [param*]
Willy Tarreau0ba27502007-12-24 16:55:16 +01001620 Define one or several listening addresses and/or ports in a frontend.
1621 May be used in sections : defaults | frontend | listen | backend
1622 no | yes | yes | no
1623 Arguments :
Willy Tarreaub1e52e82008-01-13 14:49:51 +01001624 <address> is optional and can be a host name, an IPv4 address, an IPv6
1625 address, or '*'. It designates the address the frontend will
1626 listen on. If unset, all IPv4 addresses of the system will be
1627 listened on. The same will apply for '*' or the system's
David du Colombier9c938da2011-03-17 10:40:27 +01001628 special address "0.0.0.0". The IPv6 equivalent is '::'.
Willy Tarreau24709282013-03-10 21:32:12 +01001629 Optionally, an address family prefix may be used before the
1630 address to force the family regardless of the address format,
1631 which can be useful to specify a path to a unix socket with
1632 no slash ('/'). Currently supported prefixes are :
1633 - 'ipv4@' -> address is always IPv4
1634 - 'ipv6@' -> address is always IPv6
1635 - 'unix@' -> address is a path to a local unix socket
Willy Tarreau40aa0702013-03-10 23:51:38 +01001636 - 'fd@<n>' -> use file descriptor <n> inherited from the
1637 parent. The fd must be bound and may or may not already
1638 be listening.
Willy Tarreaudad36a32013-03-11 01:20:04 +01001639 Any part of the address string may reference any number of
1640 environment variables by preceding their name with a dollar
1641 sign ('$') and optionally enclosing them with braces ('{}'),
1642 similarly to what is done in Bourne shell.
Willy Tarreaub1e52e82008-01-13 14:49:51 +01001643
Willy Tarreauc5011ca2010-03-22 11:53:56 +01001644 <port_range> is either a unique TCP port, or a port range for which the
1645 proxy will accept connections for the IP address specified
Willy Tarreauceb24bc2010-11-09 12:46:41 +01001646 above. The port is mandatory for TCP listeners. Note that in
1647 the case of an IPv6 address, the port is always the number
1648 after the last colon (':'). A range can either be :
Willy Tarreauc5011ca2010-03-22 11:53:56 +01001649 - a numerical port (ex: '80')
1650 - a dash-delimited ports range explicitly stating the lower
1651 and upper bounds (ex: '2000-2100') which are included in
1652 the range.
1653
1654 Particular care must be taken against port ranges, because
1655 every <address:port> couple consumes one socket (= a file
1656 descriptor), so it's easy to consume lots of descriptors
1657 with a simple range, and to run out of sockets. Also, each
1658 <address:port> couple must be used only once among all
1659 instances running on a same system. Please note that binding
1660 to ports lower than 1024 generally require particular
Jamie Gloudon801a0a32012-08-25 00:18:33 -04001661 privileges to start the program, which are independent of
Willy Tarreauc5011ca2010-03-22 11:53:56 +01001662 the 'uid' parameter.
Willy Tarreau0ba27502007-12-24 16:55:16 +01001663
Willy Tarreauceb24bc2010-11-09 12:46:41 +01001664 <path> is a UNIX socket path beginning with a slash ('/'). This is
1665 alternative to the TCP listening port. Haproxy will then
1666 receive UNIX connections on the socket located at this place.
1667 The path must begin with a slash and by default is absolute.
1668 It can be relative to the prefix defined by "unix-bind" in
1669 the global section. Note that the total length of the prefix
1670 followed by the socket path cannot exceed some system limits
1671 for UNIX sockets, which commonly are set to 107 characters.
1672
Willy Tarreaub6205fd2012-09-24 12:27:33 +02001673 <param*> is a list of parameters common to all sockets declared on the
1674 same line. These numerous parameters depend on OS and build
1675 options and have a complete section dedicated to them. Please
1676 refer to section 5 to for more details.
Willy Tarreaua0ee1d02012-09-10 09:01:23 +02001677
Willy Tarreau0ba27502007-12-24 16:55:16 +01001678 It is possible to specify a list of address:port combinations delimited by
1679 commas. The frontend will then listen on all of these addresses. There is no
1680 fixed limit to the number of addresses and ports which can be listened on in
1681 a frontend, as well as there is no limit to the number of "bind" statements
1682 in a frontend.
1683
1684 Example :
1685 listen http_proxy
1686 bind :80,:443
1687 bind 10.0.0.1:10080,10.0.0.1:10443
Willy Tarreauceb24bc2010-11-09 12:46:41 +01001688 bind /var/run/ssl-frontend.sock user root mode 600 accept-proxy
Willy Tarreau0ba27502007-12-24 16:55:16 +01001689
Willy Tarreaua0ee1d02012-09-10 09:01:23 +02001690 listen http_https_proxy
1691 bind :80
Cyril Bonté0d44fc62012-10-09 22:45:33 +02001692 bind :443 ssl crt /etc/haproxy/site.pem
Willy Tarreaua0ee1d02012-09-10 09:01:23 +02001693
Willy Tarreau24709282013-03-10 21:32:12 +01001694 listen http_https_proxy_explicit
1695 bind ipv6@:80
1696 bind ipv4@public_ssl:443 ssl crt /etc/haproxy/site.pem
1697 bind unix@ssl-frontend.sock user root mode 600 accept-proxy
1698
Willy Tarreaudad36a32013-03-11 01:20:04 +01001699 listen external_bind_app1
1700 bind fd@${FD_APP1}
1701
Willy Tarreauceb24bc2010-11-09 12:46:41 +01001702 See also : "source", "option forwardfor", "unix-bind" and the PROXY protocol
Willy Tarreaub6205fd2012-09-24 12:27:33 +02001703 documentation, and section 5 about bind options.
Willy Tarreau0ba27502007-12-24 16:55:16 +01001704
1705
Willy Tarreau110ecc12012-11-15 17:50:01 +01001706bind-process [ all | odd | even | <number 1-32>[-<number 1-32>] ] ...
Willy Tarreau0b9c02c2009-02-04 22:05:05 +01001707 Limit visibility of an instance to a certain set of processes numbers.
1708 May be used in sections : defaults | frontend | listen | backend
1709 yes | yes | yes | yes
1710 Arguments :
1711 all All process will see this instance. This is the default. It
1712 may be used to override a default value.
1713
1714 odd This instance will be enabled on processes 1,3,5,...31. This
1715 option may be combined with other numbers.
1716
1717 even This instance will be enabled on processes 2,4,6,...32. This
1718 option may be combined with other numbers. Do not use it
1719 with less than 2 processes otherwise some instances might be
1720 missing from all processes.
1721
Willy Tarreau110ecc12012-11-15 17:50:01 +01001722 number The instance will be enabled on this process number or range,
1723 whose values must all be between 1 and 32. You must be
1724 careful not to reference a process number greater than the
1725 configured global.nbproc, otherwise some instances might be
1726 missing from all processes.
Willy Tarreau0b9c02c2009-02-04 22:05:05 +01001727
1728 This keyword limits binding of certain instances to certain processes. This
1729 is useful in order not to have too many processes listening to the same
1730 ports. For instance, on a dual-core machine, it might make sense to set
1731 'nbproc 2' in the global section, then distributes the listeners among 'odd'
1732 and 'even' instances.
1733
1734 At the moment, it is not possible to reference more than 32 processes using
1735 this keyword, but this should be more than enough for most setups. Please
1736 note that 'all' really means all processes and is not limited to the first
1737 32.
1738
1739 If some backends are referenced by frontends bound to other processes, the
1740 backend automatically inherits the frontend's processes.
1741
1742 Example :
1743 listen app_ip1
1744 bind 10.0.0.1:80
Willy Tarreaubfcd3112010-10-23 11:22:08 +02001745 bind-process odd
Willy Tarreau0b9c02c2009-02-04 22:05:05 +01001746
1747 listen app_ip2
1748 bind 10.0.0.2:80
Willy Tarreaubfcd3112010-10-23 11:22:08 +02001749 bind-process even
Willy Tarreau0b9c02c2009-02-04 22:05:05 +01001750
1751 listen management
1752 bind 10.0.0.3:80
Willy Tarreaubfcd3112010-10-23 11:22:08 +02001753 bind-process 1 2 3 4
Willy Tarreau0b9c02c2009-02-04 22:05:05 +01001754
Willy Tarreau110ecc12012-11-15 17:50:01 +01001755 listen management
1756 bind 10.0.0.4:80
1757 bind-process 1-4
1758
Willy Tarreau0b9c02c2009-02-04 22:05:05 +01001759 See also : "nbproc" in global section.
1760
1761
Willy Tarreau0ba27502007-12-24 16:55:16 +01001762block { if | unless } <condition>
1763 Block a layer 7 request if/unless a condition is matched
1764 May be used in sections : defaults | frontend | listen | backend
1765 no | yes | yes | yes
1766
1767 The HTTP request will be blocked very early in the layer 7 processing
1768 if/unless <condition> is matched. A 403 error will be returned if the request
Willy Tarreauc57f0e22009-05-10 13:12:33 +02001769 is blocked. The condition has to reference ACLs (see section 7). This is
Willy Tarreau3c92c5f2011-08-28 09:45:47 +02001770 typically used to deny access to certain sensitive resources if some
Willy Tarreau0ba27502007-12-24 16:55:16 +01001771 conditions are met or not met. There is no fixed limit to the number of
1772 "block" statements per instance.
1773
1774 Example:
1775 acl invalid_src src 0.0.0.0/7 224.0.0.0/3
1776 acl invalid_src src_port 0:1023
1777 acl local_dst hdr(host) -i localhost
1778 block if invalid_src || local_dst
1779
Willy Tarreauc57f0e22009-05-10 13:12:33 +02001780 See section 7 about ACL usage.
Willy Tarreau0ba27502007-12-24 16:55:16 +01001781
1782
1783capture cookie <name> len <length>
1784 Capture and log a cookie in the request and in the response.
1785 May be used in sections : defaults | frontend | listen | backend
1786 no | yes | yes | no
1787 Arguments :
1788 <name> is the beginning of the name of the cookie to capture. In order
1789 to match the exact name, simply suffix the name with an equal
1790 sign ('='). The full name will appear in the logs, which is
1791 useful with application servers which adjust both the cookie name
1792 and value (eg: ASPSESSIONXXXXX).
1793
1794 <length> is the maximum number of characters to report in the logs, which
1795 include the cookie name, the equal sign and the value, all in the
1796 standard "name=value" form. The string will be truncated on the
1797 right if it exceeds <length>.
1798
1799 Only the first cookie is captured. Both the "cookie" request headers and the
1800 "set-cookie" response headers are monitored. This is particularly useful to
1801 check for application bugs causing session crossing or stealing between
1802 users, because generally the user's cookies can only change on a login page.
1803
1804 When the cookie was not presented by the client, the associated log column
1805 will report "-". When a request does not cause a cookie to be assigned by the
1806 server, a "-" is reported in the response column.
1807
1808 The capture is performed in the frontend only because it is necessary that
1809 the log format does not change for a given frontend depending on the
1810 backends. This may change in the future. Note that there can be only one
Willy Tarreau193b8c62012-11-22 00:17:38 +01001811 "capture cookie" statement in a frontend. The maximum capture length is set
1812 by the global "tune.http.cookielen" setting and defaults to 63 characters. It
1813 is not possible to specify a capture in a "defaults" section.
Willy Tarreau0ba27502007-12-24 16:55:16 +01001814
1815 Example:
1816 capture cookie ASPSESSION len 32
1817
1818 See also : "capture request header", "capture response header" as well as
Willy Tarreauc57f0e22009-05-10 13:12:33 +02001819 section 8 about logging.
Willy Tarreau0ba27502007-12-24 16:55:16 +01001820
1821
1822capture request header <name> len <length>
Willy Tarreau4460d032012-11-21 23:37:37 +01001823 Capture and log the last occurrence of the specified request header.
Willy Tarreau0ba27502007-12-24 16:55:16 +01001824 May be used in sections : defaults | frontend | listen | backend
1825 no | yes | yes | no
1826 Arguments :
1827 <name> is the name of the header to capture. The header names are not
Willy Tarreaud2a4aa22008-01-31 15:28:22 +01001828 case-sensitive, but it is a common practice to write them as they
Willy Tarreau0ba27502007-12-24 16:55:16 +01001829 appear in the requests, with the first letter of each word in
1830 upper case. The header name will not appear in the logs, only the
1831 value is reported, but the position in the logs is respected.
1832
1833 <length> is the maximum number of characters to extract from the value and
1834 report in the logs. The string will be truncated on the right if
1835 it exceeds <length>.
1836
Willy Tarreau4460d032012-11-21 23:37:37 +01001837 The complete value of the last occurrence of the header is captured. The
Willy Tarreau0ba27502007-12-24 16:55:16 +01001838 value will be added to the logs between braces ('{}'). If multiple headers
1839 are captured, they will be delimited by a vertical bar ('|') and will appear
Willy Tarreaucc6c8912009-02-22 10:53:55 +01001840 in the same order they were declared in the configuration. Non-existent
1841 headers will be logged just as an empty string. Common uses for request
1842 header captures include the "Host" field in virtual hosting environments, the
1843 "Content-length" when uploads are supported, "User-agent" to quickly
Krzysztof Piotr Oledzkif8645332009-12-13 21:55:50 +01001844 differentiate between real users and robots, and "X-Forwarded-For" in proxied
Willy Tarreaucc6c8912009-02-22 10:53:55 +01001845 environments to find where the request came from.
1846
1847 Note that when capturing headers such as "User-agent", some spaces may be
1848 logged, making the log analysis more difficult. Thus be careful about what
1849 you log if you know your log parser is not smart enough to rely on the
1850 braces.
Willy Tarreau0ba27502007-12-24 16:55:16 +01001851
Willy Tarreau0900abb2012-11-22 00:21:46 +01001852 There is no limit to the number of captured request headers nor to their
1853 length, though it is wise to keep them low to limit memory usage per session.
1854 In order to keep log format consistent for a same frontend, header captures
1855 can only be declared in a frontend. It is not possible to specify a capture
1856 in a "defaults" section.
Willy Tarreau0ba27502007-12-24 16:55:16 +01001857
1858 Example:
1859 capture request header Host len 15
1860 capture request header X-Forwarded-For len 15
1861 capture request header Referrer len 15
1862
Willy Tarreauc57f0e22009-05-10 13:12:33 +02001863 See also : "capture cookie", "capture response header" as well as section 8
Willy Tarreau0ba27502007-12-24 16:55:16 +01001864 about logging.
1865
1866
1867capture response header <name> len <length>
Willy Tarreau4460d032012-11-21 23:37:37 +01001868 Capture and log the last occurrence of the specified response header.
Willy Tarreau0ba27502007-12-24 16:55:16 +01001869 May be used in sections : defaults | frontend | listen | backend
1870 no | yes | yes | no
1871 Arguments :
1872 <name> is the name of the header to capture. The header names are not
Willy Tarreaud2a4aa22008-01-31 15:28:22 +01001873 case-sensitive, but it is a common practice to write them as they
Willy Tarreau0ba27502007-12-24 16:55:16 +01001874 appear in the response, with the first letter of each word in
1875 upper case. The header name will not appear in the logs, only the
1876 value is reported, but the position in the logs is respected.
1877
1878 <length> is the maximum number of characters to extract from the value and
1879 report in the logs. The string will be truncated on the right if
1880 it exceeds <length>.
1881
Willy Tarreau4460d032012-11-21 23:37:37 +01001882 The complete value of the last occurrence of the header is captured. The
Willy Tarreau0ba27502007-12-24 16:55:16 +01001883 result will be added to the logs between braces ('{}') after the captured
1884 request headers. If multiple headers are captured, they will be delimited by
1885 a vertical bar ('|') and will appear in the same order they were declared in
Willy Tarreaucc6c8912009-02-22 10:53:55 +01001886 the configuration. Non-existent headers will be logged just as an empty
1887 string. Common uses for response header captures include the "Content-length"
1888 header which indicates how many bytes are expected to be returned, the
1889 "Location" header to track redirections.
Willy Tarreau0ba27502007-12-24 16:55:16 +01001890
Willy Tarreau0900abb2012-11-22 00:21:46 +01001891 There is no limit to the number of captured response headers nor to their
1892 length, though it is wise to keep them low to limit memory usage per session.
1893 In order to keep log format consistent for a same frontend, header captures
1894 can only be declared in a frontend. It is not possible to specify a capture
1895 in a "defaults" section.
Willy Tarreau0ba27502007-12-24 16:55:16 +01001896
1897 Example:
1898 capture response header Content-length len 9
1899 capture response header Location len 15
1900
Willy Tarreauc57f0e22009-05-10 13:12:33 +02001901 See also : "capture cookie", "capture request header" as well as section 8
Willy Tarreau0ba27502007-12-24 16:55:16 +01001902 about logging.
1903
1904
Cyril Bontéf0c60612010-02-06 14:44:47 +01001905clitimeout <timeout> (deprecated)
Willy Tarreau0ba27502007-12-24 16:55:16 +01001906 Set the maximum inactivity time on the client side.
1907 May be used in sections : defaults | frontend | listen | backend
1908 yes | yes | yes | no
1909 Arguments :
1910 <timeout> is the timeout value is specified in milliseconds by default, but
1911 can be in any other unit if the number is suffixed by the unit,
1912 as explained at the top of this document.
1913
1914 The inactivity timeout applies when the client is expected to acknowledge or
1915 send data. In HTTP mode, this timeout is particularly important to consider
1916 during the first phase, when the client sends the request, and during the
1917 response while it is reading data sent by the server. The value is specified
1918 in milliseconds by default, but can be in any other unit if the number is
1919 suffixed by the unit, as specified at the top of this document. In TCP mode
1920 (and to a lesser extent, in HTTP mode), it is highly recommended that the
1921 client timeout remains equal to the server timeout in order to avoid complex
Willy Tarreaud2a4aa22008-01-31 15:28:22 +01001922 situations to debug. It is a good practice to cover one or several TCP packet
Willy Tarreau0ba27502007-12-24 16:55:16 +01001923 losses by specifying timeouts that are slightly above multiples of 3 seconds
1924 (eg: 4 or 5 seconds).
1925
1926 This parameter is specific to frontends, but can be specified once for all in
1927 "defaults" sections. This is in fact one of the easiest solutions not to
1928 forget about it. An unspecified timeout results in an infinite timeout, which
1929 is not recommended. Such a usage is accepted and works but reports a warning
1930 during startup because it may results in accumulation of expired sessions in
1931 the system if the system's timeouts are not configured either.
1932
1933 This parameter is provided for compatibility but is currently deprecated.
1934 Please use "timeout client" instead.
1935
Willy Tarreau036fae02008-01-06 13:24:40 +01001936 See also : "timeout client", "timeout http-request", "timeout server", and
1937 "srvtimeout".
Willy Tarreau0ba27502007-12-24 16:55:16 +01001938
Cyril Bonté316a8cf2012-11-11 13:38:27 +01001939compression algo <algorithm> ...
1940compression type <mime type> ...
Willy Tarreau70737d12012-10-27 00:34:28 +02001941compression offload
William Lallemand82fe75c2012-10-23 10:25:10 +02001942 Enable HTTP compression.
1943 May be used in sections : defaults | frontend | listen | backend
1944 yes | yes | yes | yes
1945 Arguments :
Cyril Bonté316a8cf2012-11-11 13:38:27 +01001946 algo is followed by the list of supported compression algorithms.
1947 type is followed by the list of MIME types that will be compressed.
1948 offload makes haproxy work as a compression offloader only (see notes).
1949
1950 The currently supported algorithms are :
Dmitry Sivachenko87c208b2012-11-22 20:03:26 +04001951 identity this is mostly for debugging, and it was useful for developing
Cyril Bonté316a8cf2012-11-11 13:38:27 +01001952 the compression feature. Identity does not apply any change on
1953 data.
1954
1955 gzip applies gzip compression. This setting is only available when
1956 support for zlib was built in.
1957
1958 deflate same as gzip, but with deflate algorithm and zlib format.
1959 Note that this algorithm has ambiguous support on many browsers
1960 and no support at all from recent ones. It is strongly
1961 recommended not to use it for anything else than experimentation.
1962 This setting is only available when support for zlib was built
1963 in.
1964
Dmitry Sivachenko87c208b2012-11-22 20:03:26 +04001965 Compression will be activated depending on the Accept-Encoding request
Cyril Bonté316a8cf2012-11-11 13:38:27 +01001966 header. With identity, it does not take care of that header.
Dmitry Sivachenkoc9f3b452012-11-28 17:47:11 +04001967 If backend servers support HTTP compression, these directives
1968 will be no-op: haproxy will see the compressed response and will not
1969 compress again. If backend servers do not support HTTP compression and
1970 there is Accept-Encoding header in request, haproxy will compress the
1971 matching response.
Willy Tarreau70737d12012-10-27 00:34:28 +02001972
1973 The "offload" setting makes haproxy remove the Accept-Encoding header to
1974 prevent backend servers from compressing responses. It is strongly
1975 recommended not to do this because this means that all the compression work
1976 will be done on the single point where haproxy is located. However in some
1977 deployment scenarios, haproxy may be installed in front of a buggy gateway
Dmitry Sivachenkoc9f3b452012-11-28 17:47:11 +04001978 with broken HTTP compression implementation which can't be turned off.
1979 In that case haproxy can be used to prevent that gateway from emitting
1980 invalid payloads. In this case, simply removing the header in the
1981 configuration does not work because it applies before the header is parsed,
1982 so that prevents haproxy from compressing. The "offload" setting should
1983 then be used for such scenarios.
William Lallemand82fe75c2012-10-23 10:25:10 +02001984
William Lallemand05097442012-11-20 12:14:28 +01001985 Compression is disabled when:
Baptiste Assmann650d53d2013-01-05 15:44:44 +01001986 * the request does not advertise a supported compression algorithm in the
1987 "Accept-Encoding" header
1988 * the response message is not HTTP/1.1
William Lallemandd3002612012-11-26 14:34:47 +01001989 * HTTP status code is not 200
Baptiste Assmann650d53d2013-01-05 15:44:44 +01001990 * response contain neither a "Content-Length" header nor a
1991 "Transfer-Encoding" whose last value is "chunked"
1992 * response contains a "Content-Type" header whose first value starts with
1993 "multipart"
1994 * the response contains the "no-transform" value in the "Cache-control"
1995 header
1996 * User-Agent matches "Mozilla/4" unless it is MSIE 6 with XP SP2, or MSIE 7
1997 and later
1998 * The response contains a "Content-Encoding" header, indicating that the
1999 response is already compressed (see compression offload)
William Lallemand05097442012-11-20 12:14:28 +01002000
Baptiste Assmann650d53d2013-01-05 15:44:44 +01002001 Note: The compression does not rewrite Etag headers, and does not emit the
2002 Warning header.
William Lallemand05097442012-11-20 12:14:28 +01002003
William Lallemand82fe75c2012-10-23 10:25:10 +02002004 Examples :
2005 compression algo gzip
2006 compression type text/html text/plain
Willy Tarreau0ba27502007-12-24 16:55:16 +01002007
Cyril Bontéf0c60612010-02-06 14:44:47 +01002008contimeout <timeout> (deprecated)
Willy Tarreau0ba27502007-12-24 16:55:16 +01002009 Set the maximum time to wait for a connection attempt to a server to succeed.
2010 May be used in sections : defaults | frontend | listen | backend
2011 yes | no | yes | yes
2012 Arguments :
2013 <timeout> is the timeout value is specified in milliseconds by default, but
2014 can be in any other unit if the number is suffixed by the unit,
2015 as explained at the top of this document.
2016
2017 If the server is located on the same LAN as haproxy, the connection should be
Willy Tarreaud2a4aa22008-01-31 15:28:22 +01002018 immediate (less than a few milliseconds). Anyway, it is a good practice to
Willy Tarreaud72758d2010-01-12 10:42:19 +01002019 cover one or several TCP packet losses by specifying timeouts that are
Willy Tarreau0ba27502007-12-24 16:55:16 +01002020 slightly above multiples of 3 seconds (eg: 4 or 5 seconds). By default, the
2021 connect timeout also presets the queue timeout to the same value if this one
2022 has not been specified. Historically, the contimeout was also used to set the
2023 tarpit timeout in a listen section, which is not possible in a pure frontend.
2024
2025 This parameter is specific to backends, but can be specified once for all in
2026 "defaults" sections. This is in fact one of the easiest solutions not to
2027 forget about it. An unspecified timeout results in an infinite timeout, which
2028 is not recommended. Such a usage is accepted and works but reports a warning
2029 during startup because it may results in accumulation of failed sessions in
2030 the system if the system's timeouts are not configured either.
2031
2032 This parameter is provided for backwards compatibility but is currently
2033 deprecated. Please use "timeout connect", "timeout queue" or "timeout tarpit"
2034 instead.
2035
2036 See also : "timeout connect", "timeout queue", "timeout tarpit",
2037 "timeout server", "contimeout".
2038
2039
Willy Tarreau55165fe2009-05-10 12:02:55 +02002040cookie <name> [ rewrite | insert | prefix ] [ indirect ] [ nocache ]
Willy Tarreau4992dd22012-05-31 21:02:17 +02002041 [ postonly ] [ preserve ] [ httponly ] [ secure ]
2042 [ domain <domain> ]* [ maxidle <idle> ] [ maxlife <life> ]
Willy Tarreau0ba27502007-12-24 16:55:16 +01002043 Enable cookie-based persistence in a backend.
2044 May be used in sections : defaults | frontend | listen | backend
2045 yes | no | yes | yes
2046 Arguments :
2047 <name> is the name of the cookie which will be monitored, modified or
2048 inserted in order to bring persistence. This cookie is sent to
2049 the client via a "Set-Cookie" header in the response, and is
2050 brought back by the client in a "Cookie" header in all requests.
2051 Special care should be taken to choose a name which does not
2052 conflict with any likely application cookie. Also, if the same
2053 backends are subject to be used by the same clients (eg:
2054 HTTP/HTTPS), care should be taken to use different cookie names
2055 between all backends if persistence between them is not desired.
2056
2057 rewrite This keyword indicates that the cookie will be provided by the
2058 server and that haproxy will have to modify its value to set the
2059 server's identifier in it. This mode is handy when the management
2060 of complex combinations of "Set-cookie" and "Cache-control"
2061 headers is left to the application. The application can then
2062 decide whether or not it is appropriate to emit a persistence
2063 cookie. Since all responses should be monitored, this mode only
2064 works in HTTP close mode. Unless the application behaviour is
2065 very complex and/or broken, it is advised not to start with this
2066 mode for new deployments. This keyword is incompatible with
2067 "insert" and "prefix".
2068
2069 insert This keyword indicates that the persistence cookie will have to
Willy Tarreaua79094d2010-08-31 22:54:15 +02002070 be inserted by haproxy in server responses if the client did not
Willy Tarreauba4c5be2010-10-23 12:46:42 +02002071
Willy Tarreaua79094d2010-08-31 22:54:15 +02002072 already have a cookie that would have permitted it to access this
Willy Tarreauba4c5be2010-10-23 12:46:42 +02002073 server. When used without the "preserve" option, if the server
2074 emits a cookie with the same name, it will be remove before
2075 processing. For this reason, this mode can be used to upgrade
2076 existing configurations running in the "rewrite" mode. The cookie
2077 will only be a session cookie and will not be stored on the
2078 client's disk. By default, unless the "indirect" option is added,
2079 the server will see the cookies emitted by the client. Due to
2080 caching effects, it is generally wise to add the "nocache" or
2081 "postonly" keywords (see below). The "insert" keyword is not
2082 compatible with "rewrite" and "prefix".
Willy Tarreau0ba27502007-12-24 16:55:16 +01002083
2084 prefix This keyword indicates that instead of relying on a dedicated
2085 cookie for the persistence, an existing one will be completed.
2086 This may be needed in some specific environments where the client
2087 does not support more than one single cookie and the application
2088 already needs it. In this case, whenever the server sets a cookie
2089 named <name>, it will be prefixed with the server's identifier
2090 and a delimiter. The prefix will be removed from all client
2091 requests so that the server still finds the cookie it emitted.
2092 Since all requests and responses are subject to being modified,
2093 this mode requires the HTTP close mode. The "prefix" keyword is
Willy Tarreau37229df2011-10-17 12:24:55 +02002094 not compatible with "rewrite" and "insert". Note: it is highly
2095 recommended not to use "indirect" with "prefix", otherwise server
2096 cookie updates would not be sent to clients.
Willy Tarreau0ba27502007-12-24 16:55:16 +01002097
Willy Tarreaua79094d2010-08-31 22:54:15 +02002098 indirect When this option is specified, no cookie will be emitted to a
2099 client which already has a valid one for the server which has
2100 processed the request. If the server sets such a cookie itself,
Willy Tarreauba4c5be2010-10-23 12:46:42 +02002101 it will be removed, unless the "preserve" option is also set. In
2102 "insert" mode, this will additionally remove cookies from the
2103 requests transmitted to the server, making the persistence
2104 mechanism totally transparent from an application point of view.
Willy Tarreau37229df2011-10-17 12:24:55 +02002105 Note: it is highly recommended not to use "indirect" with
2106 "prefix", otherwise server cookie updates would not be sent to
2107 clients.
Willy Tarreau0ba27502007-12-24 16:55:16 +01002108
2109 nocache This option is recommended in conjunction with the insert mode
2110 when there is a cache between the client and HAProxy, as it
2111 ensures that a cacheable response will be tagged non-cacheable if
2112 a cookie needs to be inserted. This is important because if all
2113 persistence cookies are added on a cacheable home page for
2114 instance, then all customers will then fetch the page from an
2115 outer cache and will all share the same persistence cookie,
2116 leading to one server receiving much more traffic than others.
2117 See also the "insert" and "postonly" options.
2118
2119 postonly This option ensures that cookie insertion will only be performed
2120 on responses to POST requests. It is an alternative to the
2121 "nocache" option, because POST responses are not cacheable, so
2122 this ensures that the persistence cookie will never get cached.
2123 Since most sites do not need any sort of persistence before the
2124 first POST which generally is a login request, this is a very
2125 efficient method to optimize caching without risking to find a
2126 persistence cookie in the cache.
2127 See also the "insert" and "nocache" options.
2128
Willy Tarreauba4c5be2010-10-23 12:46:42 +02002129 preserve This option may only be used with "insert" and/or "indirect". It
2130 allows the server to emit the persistence cookie itself. In this
2131 case, if a cookie is found in the response, haproxy will leave it
2132 untouched. This is useful in order to end persistence after a
2133 logout request for instance. For this, the server just has to
2134 emit a cookie with an invalid value (eg: empty) or with a date in
2135 the past. By combining this mechanism with the "disable-on-404"
2136 check option, it is possible to perform a completely graceful
2137 shutdown because users will definitely leave the server after
2138 they logout.
2139
Willy Tarreau4992dd22012-05-31 21:02:17 +02002140 httponly This option tells haproxy to add an "HttpOnly" cookie attribute
2141 when a cookie is inserted. This attribute is used so that a
2142 user agent doesn't share the cookie with non-HTTP components.
2143 Please check RFC6265 for more information on this attribute.
2144
2145 secure This option tells haproxy to add a "Secure" cookie attribute when
2146 a cookie is inserted. This attribute is used so that a user agent
2147 never emits this cookie over non-secure channels, which means
2148 that a cookie learned with this flag will be presented only over
2149 SSL/TLS connections. Please check RFC6265 for more information on
2150 this attribute.
2151
Krzysztof Piotr Oledzkiefe3b6f2008-05-23 23:49:32 +02002152 domain This option allows to specify the domain at which a cookie is
Krzysztof Piotr Oledzkif8645332009-12-13 21:55:50 +01002153 inserted. It requires exactly one parameter: a valid domain
Willy Tarreau68a897b2009-12-03 23:28:34 +01002154 name. If the domain begins with a dot, the browser is allowed to
2155 use it for any host ending with that name. It is also possible to
2156 specify several domain names by invoking this option multiple
2157 times. Some browsers might have small limits on the number of
2158 domains, so be careful when doing that. For the record, sending
2159 10 domains to MSIE 6 or Firefox 2 works as expected.
Krzysztof Piotr Oledzkiefe3b6f2008-05-23 23:49:32 +02002160
Willy Tarreau996a92c2010-10-13 19:30:47 +02002161 maxidle This option allows inserted cookies to be ignored after some idle
2162 time. It only works with insert-mode cookies. When a cookie is
2163 sent to the client, the date this cookie was emitted is sent too.
2164 Upon further presentations of this cookie, if the date is older
2165 than the delay indicated by the parameter (in seconds), it will
2166 be ignored. Otherwise, it will be refreshed if needed when the
2167 response is sent to the client. This is particularly useful to
2168 prevent users who never close their browsers from remaining for
2169 too long on the same server (eg: after a farm size change). When
2170 this option is set and a cookie has no date, it is always
2171 accepted, but gets refreshed in the response. This maintains the
2172 ability for admins to access their sites. Cookies that have a
2173 date in the future further than 24 hours are ignored. Doing so
2174 lets admins fix timezone issues without risking kicking users off
2175 the site.
2176
2177 maxlife This option allows inserted cookies to be ignored after some life
2178 time, whether they're in use or not. It only works with insert
2179 mode cookies. When a cookie is first sent to the client, the date
2180 this cookie was emitted is sent too. Upon further presentations
2181 of this cookie, if the date is older than the delay indicated by
2182 the parameter (in seconds), it will be ignored. If the cookie in
2183 the request has no date, it is accepted and a date will be set.
2184 Cookies that have a date in the future further than 24 hours are
2185 ignored. Doing so lets admins fix timezone issues without risking
2186 kicking users off the site. Contrary to maxidle, this value is
2187 not refreshed, only the first visit date counts. Both maxidle and
2188 maxlife may be used at the time. This is particularly useful to
2189 prevent users who never close their browsers from remaining for
2190 too long on the same server (eg: after a farm size change). This
2191 is stronger than the maxidle method in that it forces a
2192 redispatch after some absolute delay.
2193
Willy Tarreau0ba27502007-12-24 16:55:16 +01002194 There can be only one persistence cookie per HTTP backend, and it can be
2195 declared in a defaults section. The value of the cookie will be the value
2196 indicated after the "cookie" keyword in a "server" statement. If no cookie
2197 is declared for a given server, the cookie is not set.
Willy Tarreau6a06a402007-07-15 20:15:28 +02002198
Willy Tarreau0ba27502007-12-24 16:55:16 +01002199 Examples :
2200 cookie JSESSIONID prefix
2201 cookie SRV insert indirect nocache
2202 cookie SRV insert postonly indirect
Willy Tarreau996a92c2010-10-13 19:30:47 +02002203 cookie SRV insert indirect nocache maxidle 30m maxlife 8h
Willy Tarreau0ba27502007-12-24 16:55:16 +01002204
Cyril Bontéa8e7bbc2010-04-25 22:29:29 +02002205 See also : "appsession", "balance source", "capture cookie", "server"
Cyril Bonté0d4bf012010-04-25 23:21:46 +02002206 and "ignore-persist".
Willy Tarreau0ba27502007-12-24 16:55:16 +01002207
Willy Tarreau983e01e2010-01-11 18:42:06 +01002208
Krzysztof Piotr Oledzkic6df0662010-01-05 16:38:49 +01002209default-server [param*]
2210 Change default options for a server in a backend
2211 May be used in sections : defaults | frontend | listen | backend
2212 yes | no | yes | yes
2213 Arguments:
Willy Tarreau983e01e2010-01-11 18:42:06 +01002214 <param*> is a list of parameters for this server. The "default-server"
2215 keyword accepts an important number of options and has a complete
2216 section dedicated to it. Please refer to section 5 for more
2217 details.
Krzysztof Piotr Oledzkic6df0662010-01-05 16:38:49 +01002218
Willy Tarreau983e01e2010-01-11 18:42:06 +01002219 Example :
Krzysztof Piotr Oledzkic6df0662010-01-05 16:38:49 +01002220 default-server inter 1000 weight 13
2221
2222 See also: "server" and section 5 about server options
Willy Tarreau0ba27502007-12-24 16:55:16 +01002223
Willy Tarreau983e01e2010-01-11 18:42:06 +01002224
Willy Tarreau0ba27502007-12-24 16:55:16 +01002225default_backend <backend>
2226 Specify the backend to use when no "use_backend" rule has been matched.
2227 May be used in sections : defaults | frontend | listen | backend
2228 yes | yes | yes | no
2229 Arguments :
2230 <backend> is the name of the backend to use.
2231
2232 When doing content-switching between frontend and backends using the
2233 "use_backend" keyword, it is often useful to indicate which backend will be
2234 used when no rule has matched. It generally is the dynamic backend which
2235 will catch all undetermined requests.
2236
Willy Tarreau0ba27502007-12-24 16:55:16 +01002237 Example :
2238
2239 use_backend dynamic if url_dyn
2240 use_backend static if url_css url_img extension_img
2241 default_backend dynamic
2242
Willy Tarreau2769aa02007-12-27 18:26:09 +01002243 See also : "use_backend", "reqsetbe", "reqisetbe"
2244
Willy Tarreau0ba27502007-12-24 16:55:16 +01002245
Baptiste Assmann27f51342013-10-09 06:51:49 +02002246description <string>
2247 Describe a listen, frontend or backend.
2248 May be used in sections : defaults | frontend | listen | backend
2249 no | yes | yes | yes
2250 Arguments : string
2251
2252 Allows to add a sentence to describe the related object in the HAProxy HTML
2253 stats page. The description will be printed on the right of the object name
2254 it describes.
2255 No need to backslash spaces in the <string> arguments.
2256
2257
Willy Tarreau0ba27502007-12-24 16:55:16 +01002258disabled
2259 Disable a proxy, frontend or backend.
2260 May be used in sections : defaults | frontend | listen | backend
2261 yes | yes | yes | yes
2262 Arguments : none
2263
2264 The "disabled" keyword is used to disable an instance, mainly in order to
2265 liberate a listening port or to temporarily disable a service. The instance
2266 will still be created and its configuration will be checked, but it will be
2267 created in the "stopped" state and will appear as such in the statistics. It
2268 will not receive any traffic nor will it send any health-checks or logs. It
2269 is possible to disable many instances at once by adding the "disabled"
2270 keyword in a "defaults" section.
2271
2272 See also : "enabled"
2273
2274
Willy Tarreau5ce94572010-06-07 14:35:41 +02002275dispatch <address>:<port>
2276 Set a default server address
2277 May be used in sections : defaults | frontend | listen | backend
2278 no | no | yes | yes
Cyril Bonté108cf6e2012-04-21 23:30:29 +02002279 Arguments :
Willy Tarreau5ce94572010-06-07 14:35:41 +02002280
2281 <address> is the IPv4 address of the default server. Alternatively, a
2282 resolvable hostname is supported, but this name will be resolved
2283 during start-up.
2284
2285 <ports> is a mandatory port specification. All connections will be sent
2286 to this port, and it is not permitted to use port offsets as is
2287 possible with normal servers.
2288
Willy Tarreau787aed52011-04-15 06:45:37 +02002289 The "dispatch" keyword designates a default server for use when no other
Willy Tarreau5ce94572010-06-07 14:35:41 +02002290 server can take the connection. In the past it was used to forward non
2291 persistent connections to an auxiliary load balancer. Due to its simple
2292 syntax, it has also been used for simple TCP relays. It is recommended not to
2293 use it for more clarity, and to use the "server" directive instead.
2294
2295 See also : "server"
2296
2297
Willy Tarreau0ba27502007-12-24 16:55:16 +01002298enabled
2299 Enable a proxy, frontend or backend.
2300 May be used in sections : defaults | frontend | listen | backend
2301 yes | yes | yes | yes
2302 Arguments : none
2303
2304 The "enabled" keyword is used to explicitly enable an instance, when the
2305 defaults has been set to "disabled". This is very rarely used.
2306
2307 See also : "disabled"
2308
2309
2310errorfile <code> <file>
2311 Return a file contents instead of errors generated by HAProxy
2312 May be used in sections : defaults | frontend | listen | backend
2313 yes | yes | yes | yes
2314 Arguments :
2315 <code> is the HTTP status code. Currently, HAProxy is capable of
Willy Tarreauae94d4d2011-05-11 16:28:49 +02002316 generating codes 200, 400, 403, 408, 500, 502, 503, and 504.
Willy Tarreau0ba27502007-12-24 16:55:16 +01002317
2318 <file> designates a file containing the full HTTP response. It is
Willy Tarreaud2a4aa22008-01-31 15:28:22 +01002319 recommended to follow the common practice of appending ".http" to
Willy Tarreau0ba27502007-12-24 16:55:16 +01002320 the filename so that people do not confuse the response with HTML
Willy Tarreau59140a22009-02-22 12:02:30 +01002321 error pages, and to use absolute paths, since files are read
2322 before any chroot is performed.
Willy Tarreau0ba27502007-12-24 16:55:16 +01002323
2324 It is important to understand that this keyword is not meant to rewrite
2325 errors returned by the server, but errors detected and returned by HAProxy.
2326 This is why the list of supported errors is limited to a small set.
2327
Willy Tarreauae94d4d2011-05-11 16:28:49 +02002328 Code 200 is emitted in response to requests matching a "monitor-uri" rule.
2329
Willy Tarreau0ba27502007-12-24 16:55:16 +01002330 The files are returned verbatim on the TCP socket. This allows any trick such
2331 as redirections to another URL or site, as well as tricks to clean cookies,
2332 force enable or disable caching, etc... The package provides default error
2333 files returning the same contents as default errors.
2334
Willy Tarreau59140a22009-02-22 12:02:30 +01002335 The files should not exceed the configured buffer size (BUFSIZE), which
2336 generally is 8 or 16 kB, otherwise they will be truncated. It is also wise
2337 not to put any reference to local contents (eg: images) in order to avoid
2338 loops between the client and HAProxy when all servers are down, causing an
2339 error to be returned instead of an image. For better HTTP compliance, it is
2340 recommended that all header lines end with CR-LF and not LF alone.
2341
Willy Tarreau0ba27502007-12-24 16:55:16 +01002342 The files are read at the same time as the configuration and kept in memory.
2343 For this reason, the errors continue to be returned even when the process is
2344 chrooted, and no file change is considered while the process is running. A
Willy Tarreauc27debf2008-01-06 08:57:02 +01002345 simple method for developing those files consists in associating them to the
Willy Tarreau0ba27502007-12-24 16:55:16 +01002346 403 status code and interrogating a blocked URL.
2347
2348 See also : "errorloc", "errorloc302", "errorloc303"
2349
Willy Tarreau59140a22009-02-22 12:02:30 +01002350 Example :
2351 errorfile 400 /etc/haproxy/errorfiles/400badreq.http
2352 errorfile 403 /etc/haproxy/errorfiles/403forbid.http
2353 errorfile 503 /etc/haproxy/errorfiles/503sorry.http
2354
Willy Tarreau2769aa02007-12-27 18:26:09 +01002355
2356errorloc <code> <url>
2357errorloc302 <code> <url>
2358 Return an HTTP redirection to a URL instead of errors generated by HAProxy
2359 May be used in sections : defaults | frontend | listen | backend
2360 yes | yes | yes | yes
2361 Arguments :
2362 <code> is the HTTP status code. Currently, HAProxy is capable of
Willy Tarreauae94d4d2011-05-11 16:28:49 +02002363 generating codes 200, 400, 403, 408, 500, 502, 503, and 504.
Willy Tarreau2769aa02007-12-27 18:26:09 +01002364
2365 <url> it is the exact contents of the "Location" header. It may contain
2366 either a relative URI to an error page hosted on the same site,
2367 or an absolute URI designating an error page on another site.
2368 Special care should be given to relative URIs to avoid redirect
2369 loops if the URI itself may generate the same error (eg: 500).
2370
2371 It is important to understand that this keyword is not meant to rewrite
2372 errors returned by the server, but errors detected and returned by HAProxy.
2373 This is why the list of supported errors is limited to a small set.
2374
Willy Tarreauae94d4d2011-05-11 16:28:49 +02002375 Code 200 is emitted in response to requests matching a "monitor-uri" rule.
2376
Willy Tarreau2769aa02007-12-27 18:26:09 +01002377 Note that both keyword return the HTTP 302 status code, which tells the
2378 client to fetch the designated URL using the same HTTP method. This can be
2379 quite problematic in case of non-GET methods such as POST, because the URL
2380 sent to the client might not be allowed for something other than GET. To
2381 workaround this problem, please use "errorloc303" which send the HTTP 303
2382 status code, indicating to the client that the URL must be fetched with a GET
2383 request.
2384
2385 See also : "errorfile", "errorloc303"
2386
2387
2388errorloc303 <code> <url>
2389 Return an HTTP redirection to a URL instead of errors generated by HAProxy
2390 May be used in sections : defaults | frontend | listen | backend
2391 yes | yes | yes | yes
2392 Arguments :
2393 <code> is the HTTP status code. Currently, HAProxy is capable of
2394 generating codes 400, 403, 408, 500, 502, 503, and 504.
2395
2396 <url> it is the exact contents of the "Location" header. It may contain
2397 either a relative URI to an error page hosted on the same site,
2398 or an absolute URI designating an error page on another site.
2399 Special care should be given to relative URIs to avoid redirect
2400 loops if the URI itself may generate the same error (eg: 500).
2401
2402 It is important to understand that this keyword is not meant to rewrite
2403 errors returned by the server, but errors detected and returned by HAProxy.
2404 This is why the list of supported errors is limited to a small set.
2405
Willy Tarreauae94d4d2011-05-11 16:28:49 +02002406 Code 200 is emitted in response to requests matching a "monitor-uri" rule.
2407
Willy Tarreau2769aa02007-12-27 18:26:09 +01002408 Note that both keyword return the HTTP 303 status code, which tells the
2409 client to fetch the designated URL using the same HTTP GET method. This
2410 solves the usual problems associated with "errorloc" and the 302 code. It is
2411 possible that some very old browsers designed before HTTP/1.1 do not support
Willy Tarreaud2a4aa22008-01-31 15:28:22 +01002412 it, but no such problem has been reported till now.
Willy Tarreau2769aa02007-12-27 18:26:09 +01002413
2414 See also : "errorfile", "errorloc", "errorloc302"
2415
2416
Willy Tarreau4de91492010-01-22 19:10:05 +01002417force-persist { if | unless } <condition>
2418 Declare a condition to force persistence on down servers
2419 May be used in sections: defaults | frontend | listen | backend
2420 no | yes | yes | yes
2421
2422 By default, requests are not dispatched to down servers. It is possible to
2423 force this using "option persist", but it is unconditional and redispatches
2424 to a valid server if "option redispatch" is set. That leaves with very little
2425 possibilities to force some requests to reach a server which is artificially
2426 marked down for maintenance operations.
2427
2428 The "force-persist" statement allows one to declare various ACL-based
2429 conditions which, when met, will cause a request to ignore the down status of
2430 a server and still try to connect to it. That makes it possible to start a
2431 server, still replying an error to the health checks, and run a specially
2432 configured browser to test the service. Among the handy methods, one could
2433 use a specific source IP address, or a specific cookie. The cookie also has
2434 the advantage that it can easily be added/removed on the browser from a test
2435 page. Once the service is validated, it is then possible to open the service
2436 to the world by returning a valid response to health checks.
2437
2438 The forced persistence is enabled when an "if" condition is met, or unless an
2439 "unless" condition is met. The final redispatch is always disabled when this
2440 is used.
2441
Cyril Bonté0d4bf012010-04-25 23:21:46 +02002442 See also : "option redispatch", "ignore-persist", "persist",
Cyril Bontéa8e7bbc2010-04-25 22:29:29 +02002443 and section 7 about ACL usage.
Willy Tarreau4de91492010-01-22 19:10:05 +01002444
2445
Willy Tarreau2769aa02007-12-27 18:26:09 +01002446fullconn <conns>
2447 Specify at what backend load the servers will reach their maxconn
2448 May be used in sections : defaults | frontend | listen | backend
2449 yes | no | yes | yes
2450 Arguments :
2451 <conns> is the number of connections on the backend which will make the
2452 servers use the maximal number of connections.
2453
Willy Tarreau198a7442008-01-17 12:05:32 +01002454 When a server has a "maxconn" parameter specified, it means that its number
Willy Tarreau2769aa02007-12-27 18:26:09 +01002455 of concurrent connections will never go higher. Additionally, if it has a
Willy Tarreau198a7442008-01-17 12:05:32 +01002456 "minconn" parameter, it indicates a dynamic limit following the backend's
Willy Tarreau2769aa02007-12-27 18:26:09 +01002457 load. The server will then always accept at least <minconn> connections,
2458 never more than <maxconn>, and the limit will be on the ramp between both
2459 values when the backend has less than <conns> concurrent connections. This
2460 makes it possible to limit the load on the servers during normal loads, but
2461 push it further for important loads without overloading the servers during
Krzysztof Piotr Oledzkif8645332009-12-13 21:55:50 +01002462 exceptional loads.
Willy Tarreau2769aa02007-12-27 18:26:09 +01002463
Willy Tarreaufbb78422011-06-05 15:38:35 +02002464 Since it's hard to get this value right, haproxy automatically sets it to
2465 10% of the sum of the maxconns of all frontends that may branch to this
2466 backend. That way it's safe to leave it unset.
2467
Willy Tarreau2769aa02007-12-27 18:26:09 +01002468 Example :
2469 # The servers will accept between 100 and 1000 concurrent connections each
2470 # and the maximum of 1000 will be reached when the backend reaches 10000
2471 # connections.
2472 backend dynamic
2473 fullconn 10000
2474 server srv1 dyn1:80 minconn 100 maxconn 1000
2475 server srv2 dyn2:80 minconn 100 maxconn 1000
2476
2477 See also : "maxconn", "server"
2478
2479
2480grace <time>
2481 Maintain a proxy operational for some time after a soft stop
2482 May be used in sections : defaults | frontend | listen | backend
Cyril Bonté99ed3272010-01-24 23:29:44 +01002483 yes | yes | yes | yes
Willy Tarreau2769aa02007-12-27 18:26:09 +01002484 Arguments :
2485 <time> is the time (by default in milliseconds) for which the instance
2486 will remain operational with the frontend sockets still listening
2487 when a soft-stop is received via the SIGUSR1 signal.
2488
2489 This may be used to ensure that the services disappear in a certain order.
2490 This was designed so that frontends which are dedicated to monitoring by an
Krzysztof Piotr Oledzkif8645332009-12-13 21:55:50 +01002491 external equipment fail immediately while other ones remain up for the time
Willy Tarreau2769aa02007-12-27 18:26:09 +01002492 needed by the equipment to detect the failure.
2493
2494 Note that currently, there is very little benefit in using this parameter,
2495 and it may in fact complicate the soft-reconfiguration process more than
2496 simplify it.
2497
Willy Tarreau0ba27502007-12-24 16:55:16 +01002498
Bhaskar98634f02013-10-29 23:30:51 -04002499hash-type <method> <function>
Willy Tarreau6b2e11b2009-10-01 07:52:15 +02002500 Specify a method to use for mapping hashes to servers
2501 May be used in sections : defaults | frontend | listen | backend
2502 yes | no | yes | yes
2503 Arguments :
Bhaskar98634f02013-10-29 23:30:51 -04002504 <method> is the method used to select a server from the hash computed by
2505 the <function> :
Willy Tarreau6b2e11b2009-10-01 07:52:15 +02002506
Bhaskar98634f02013-10-29 23:30:51 -04002507 map-based the hash table is a static array containing all alive servers.
2508 The hashes will be very smooth, will consider weights, but
2509 will be static in that weight changes while a server is up
2510 will be ignored. This means that there will be no slow start.
2511 Also, since a server is selected by its position in the array,
2512 most mappings are changed when the server count changes. This
2513 means that when a server goes up or down, or when a server is
2514 added to a farm, most connections will be redistributed to
2515 different servers. This can be inconvenient with caches for
2516 instance.
Willy Tarreau798a39c2010-11-24 15:04:29 +01002517
Bhaskar98634f02013-10-29 23:30:51 -04002518 avalanche this mechanism uses the default map-based hashing described
2519 above but applies a full avalanche hash before performing the
2520 mapping. The result is a slightly less smooth hash for most
2521 situations, but the hash becomes better than pure map-based
2522 hashes when the number of servers is a multiple of the size of
2523 the input set. When using URI hash with a number of servers
2524 multiple of 64, it's desirable to change the hash type to
2525 this value.
2526
2527 consistent the hash table is a tree filled with many occurrences of each
2528 server. The hash key is looked up in the tree and the closest
2529 server is chosen. This hash is dynamic, it supports changing
2530 weights while the servers are up, so it is compatible with the
2531 slow start feature. It has the advantage that when a server
2532 goes up or down, only its associations are moved. When a
2533 server is added to the farm, only a few part of the mappings
2534 are redistributed, making it an ideal method for caches.
2535 However, due to its principle, the distribution will never be
2536 very smooth and it may sometimes be necessary to adjust a
2537 server's weight or its ID to get a more balanced distribution.
2538 In order to get the same distribution on multiple load
2539 balancers, it is important that all servers have the exact
2540 same IDs. Note: by default, a full avalanche hash is always
2541 performed before applying the consistent hash.
2542
2543 <function> is the hash function to be used :
2544
2545 sdbm this function was created intially for sdbm (a public-domain
2546 reimplementation of ndbm) database library. It was found to do
2547 well in scrambling bits, causing better distribution of the keys
2548 and fewer splits. It also happens to be a good general hashing
2549 function with good distribution.
2550
2551 djb2 this function was first proposed by Dan Bernstein many years ago
2552 on comp.lang.c. Studies have shown that for certain workload this
2553 function provides a better distribution than sdbm.
Willy Tarreau6b2e11b2009-10-01 07:52:15 +02002554
Bhaskar98634f02013-10-29 23:30:51 -04002555 The default hash type is "map-based" and is recommended for most usages. The
2556 default function is "sdbm", the selection of a function should be based on
2557 the range of the values being hashed.
Willy Tarreau6b2e11b2009-10-01 07:52:15 +02002558
2559 See also : "balance", "server"
2560
2561
Willy Tarreau0ba27502007-12-24 16:55:16 +01002562http-check disable-on-404
2563 Enable a maintenance mode upon HTTP/404 response to health-checks
2564 May be used in sections : defaults | frontend | listen | backend
Willy Tarreau2769aa02007-12-27 18:26:09 +01002565 yes | no | yes | yes
Willy Tarreau0ba27502007-12-24 16:55:16 +01002566 Arguments : none
2567
2568 When this option is set, a server which returns an HTTP code 404 will be
2569 excluded from further load-balancing, but will still receive persistent
2570 connections. This provides a very convenient method for Web administrators
2571 to perform a graceful shutdown of their servers. It is also important to note
2572 that a server which is detected as failed while it was in this mode will not
2573 generate an alert, just a notice. If the server responds 2xx or 3xx again, it
2574 will immediately be reinserted into the farm. The status on the stats page
2575 reports "NOLB" for a server in this mode. It is important to note that this
Willy Tarreaubd741542010-03-16 18:46:54 +01002576 option only works in conjunction with the "httpchk" option. If this option
2577 is used with "http-check expect", then it has precedence over it so that 404
2578 responses will still be considered as soft-stop.
2579
2580 See also : "option httpchk", "http-check expect"
2581
2582
2583http-check expect [!] <match> <pattern>
Jamie Gloudonaaa21002012-08-25 00:18:33 -04002584 Make HTTP health checks consider response contents or specific status codes
Willy Tarreaubd741542010-03-16 18:46:54 +01002585 May be used in sections : defaults | frontend | listen | backend
Willy Tarreau1ee51a62011-08-19 20:04:17 +02002586 yes | no | yes | yes
Willy Tarreaubd741542010-03-16 18:46:54 +01002587 Arguments :
2588 <match> is a keyword indicating how to look for a specific pattern in the
2589 response. The keyword may be one of "status", "rstatus",
Jamie Gloudonaaa21002012-08-25 00:18:33 -04002590 "string", or "rstring". The keyword may be preceded by an
Willy Tarreaubd741542010-03-16 18:46:54 +01002591 exclamation mark ("!") to negate the match. Spaces are allowed
2592 between the exclamation mark and the keyword. See below for more
2593 details on the supported keywords.
2594
2595 <pattern> is the pattern to look for. It may be a string or a regular
2596 expression. If the pattern contains spaces, they must be escaped
2597 with the usual backslash ('\').
2598
2599 By default, "option httpchk" considers that response statuses 2xx and 3xx
2600 are valid, and that others are invalid. When "http-check expect" is used,
2601 it defines what is considered valid or invalid. Only one "http-check"
2602 statement is supported in a backend. If a server fails to respond or times
2603 out, the check obviously fails. The available matches are :
2604
2605 status <string> : test the exact string match for the HTTP status code.
Jamie Gloudonaaa21002012-08-25 00:18:33 -04002606 A health check response will be considered valid if the
Willy Tarreaubd741542010-03-16 18:46:54 +01002607 response's status code is exactly this string. If the
2608 "status" keyword is prefixed with "!", then the response
2609 will be considered invalid if the status code matches.
2610
2611 rstatus <regex> : test a regular expression for the HTTP status code.
Jamie Gloudonaaa21002012-08-25 00:18:33 -04002612 A health check response will be considered valid if the
Willy Tarreaubd741542010-03-16 18:46:54 +01002613 response's status code matches the expression. If the
2614 "rstatus" keyword is prefixed with "!", then the response
2615 will be considered invalid if the status code matches.
2616 This is mostly used to check for multiple codes.
2617
2618 string <string> : test the exact string match in the HTTP response body.
Jamie Gloudonaaa21002012-08-25 00:18:33 -04002619 A health check response will be considered valid if the
Willy Tarreaubd741542010-03-16 18:46:54 +01002620 response's body contains this exact string. If the
2621 "string" keyword is prefixed with "!", then the response
2622 will be considered invalid if the body contains this
2623 string. This can be used to look for a mandatory word at
2624 the end of a dynamic page, or to detect a failure when a
2625 specific error appears on the check page (eg: a stack
2626 trace).
2627
2628 rstring <regex> : test a regular expression on the HTTP response body.
Jamie Gloudonaaa21002012-08-25 00:18:33 -04002629 A health check response will be considered valid if the
Willy Tarreaubd741542010-03-16 18:46:54 +01002630 response's body matches this expression. If the "rstring"
2631 keyword is prefixed with "!", then the response will be
2632 considered invalid if the body matches the expression.
2633 This can be used to look for a mandatory word at the end
2634 of a dynamic page, or to detect a failure when a specific
2635 error appears on the check page (eg: a stack trace).
2636
2637 It is important to note that the responses will be limited to a certain size
2638 defined by the global "tune.chksize" option, which defaults to 16384 bytes.
2639 Thus, too large responses may not contain the mandatory pattern when using
2640 "string" or "rstring". If a large response is absolutely required, it is
2641 possible to change the default max size by setting the global variable.
2642 However, it is worth keeping in mind that parsing very large responses can
2643 waste some CPU cycles, especially when regular expressions are used, and that
2644 it is always better to focus the checks on smaller resources.
2645
2646 Last, if "http-check expect" is combined with "http-check disable-on-404",
2647 then this last one has precedence when the server responds with 404.
2648
2649 Examples :
2650 # only accept status 200 as valid
Willy Tarreau8f2a1e72011-01-06 16:36:10 +01002651 http-check expect status 200
Willy Tarreaubd741542010-03-16 18:46:54 +01002652
2653 # consider SQL errors as errors
Willy Tarreau8f2a1e72011-01-06 16:36:10 +01002654 http-check expect ! string SQL\ Error
Willy Tarreaubd741542010-03-16 18:46:54 +01002655
2656 # consider status 5xx only as errors
Willy Tarreau8f2a1e72011-01-06 16:36:10 +01002657 http-check expect ! rstatus ^5
Willy Tarreaubd741542010-03-16 18:46:54 +01002658
2659 # check that we have a correct hexadecimal tag before /html
Willy Tarreau8f2a1e72011-01-06 16:36:10 +01002660 http-check expect rstring <!--tag:[0-9a-f]*</html>
Willy Tarreau0ba27502007-12-24 16:55:16 +01002661
Willy Tarreaubd741542010-03-16 18:46:54 +01002662 See also : "option httpchk", "http-check disable-on-404"
Willy Tarreau2769aa02007-12-27 18:26:09 +01002663
2664
Willy Tarreauef781042010-01-27 11:53:01 +01002665http-check send-state
2666 Enable emission of a state header with HTTP health checks
2667 May be used in sections : defaults | frontend | listen | backend
2668 yes | no | yes | yes
2669 Arguments : none
2670
2671 When this option is set, haproxy will systematically send a special header
2672 "X-Haproxy-Server-State" with a list of parameters indicating to each server
2673 how they are seen by haproxy. This can be used for instance when a server is
2674 manipulated without access to haproxy and the operator needs to know whether
2675 haproxy still sees it up or not, or if the server is the last one in a farm.
2676
2677 The header is composed of fields delimited by semi-colons, the first of which
2678 is a word ("UP", "DOWN", "NOLB"), possibly followed by a number of valid
2679 checks on the total number before transition, just as appears in the stats
2680 interface. Next headers are in the form "<variable>=<value>", indicating in
2681 no specific order some values available in the stats interface :
2682 - a variable "name", containing the name of the backend followed by a slash
2683 ("/") then the name of the server. This can be used when a server is
2684 checked in multiple backends.
2685
2686 - a variable "node" containing the name of the haproxy node, as set in the
2687 global "node" variable, otherwise the system's hostname if unspecified.
2688
2689 - a variable "weight" indicating the weight of the server, a slash ("/")
2690 and the total weight of the farm (just counting usable servers). This
2691 helps to know if other servers are available to handle the load when this
2692 one fails.
2693
2694 - a variable "scur" indicating the current number of concurrent connections
2695 on the server, followed by a slash ("/") then the total number of
2696 connections on all servers of the same backend.
2697
2698 - a variable "qcur" indicating the current number of requests in the
2699 server's queue.
2700
2701 Example of a header received by the application server :
2702 >>> X-Haproxy-Server-State: UP 2/3; name=bck/srv2; node=lb1; weight=1/2; \
2703 scur=13/22; qcur=0
2704
2705 See also : "option httpchk", "http-check disable-on-404"
2706
Willy Tarreauccbcc372012-12-27 12:37:57 +01002707http-request { allow | deny | tarpit | auth [realm <realm>] | redirect <rule> |
Willy Tarreauf4c43c12013-06-11 17:01:13 +02002708 add-header <name> <fmt> | set-header <name> <fmt> |
Willy Tarreau51347ed2013-06-11 19:34:13 +02002709 set-nice <nice> | set-log-level <level> | set-tos <tos> |
2710 set-mark <mark> }
Cyril Bontéf0c60612010-02-06 14:44:47 +01002711 [ { if | unless } <condition> ]
Krzysztof Piotr Oledzki6b35ce12010-02-01 23:35:44 +01002712 Access control for Layer 7 requests
2713
2714 May be used in sections: defaults | frontend | listen | backend
2715 no | yes | yes | yes
2716
Willy Tarreau20b0de52012-12-24 15:45:22 +01002717 The http-request statement defines a set of rules which apply to layer 7
2718 processing. The rules are evaluated in their declaration order when they are
2719 met in a frontend, listen or backend section. Any rule may optionally be
2720 followed by an ACL-based condition, in which case it will only be evaluated
2721 if the condition is true.
Krzysztof Piotr Oledzki6b35ce12010-02-01 23:35:44 +01002722
Willy Tarreau20b0de52012-12-24 15:45:22 +01002723 The first keyword is the rule's action. Currently supported actions include :
2724 - "allow" : this stops the evaluation of the rules and lets the request
2725 pass the check. No further "http-request" rules are evaluated.
2726
2727 - "deny" : this stops the evaluation of the rules and immediately rejects
2728 the request and emits an HTTP 403 error. No further "http-request" rules
2729 are evaluated.
2730
Willy Tarreauccbcc372012-12-27 12:37:57 +01002731 - "tarpit" : this stops the evaluation of the rules and immediately blocks
2732 the request without responding for a delay specified by "timeout tarpit"
2733 or "timeout connect" if the former is not set. After that delay, if the
2734 client is still connected, an HTTP error 500 is returned so that the
2735 client does not suspect it has been tarpitted. Logs will report the flags
2736 "PT". The goal of the tarpit rule is to slow down robots during an attack
2737 when they're limited on the number of concurrent requests. It can be very
2738 efficient against very dumb robots, and will significantly reduce the
2739 load on firewalls compared to a "deny" rule. But when facing "correctly"
2740 developped robots, it can make things worse by forcing haproxy and the
2741 front firewall to support insane number of concurrent connections.
2742
Willy Tarreau20b0de52012-12-24 15:45:22 +01002743 - "auth" : this stops the evaluation of the rules and immediately responds
2744 with an HTTP 401 or 407 error code to invite the user to present a valid
2745 user name and password. No further "http-request" rules are evaluated. An
2746 optional "realm" parameter is supported, it sets the authentication realm
2747 that is returned with the response (typically the application's name).
2748
Willy Tarreau81499eb2012-12-27 12:19:02 +01002749 - "redirect" : this performs an HTTP redirection based on a redirect rule.
2750 This is exactly the same as the "redirect" statement except that it
2751 inserts a redirect rule which can be processed in the middle of other
2752 "http-request" rules. See the "redirect" keyword for the rule's syntax.
2753
Willy Tarreau20b0de52012-12-24 15:45:22 +01002754 - "add-header" appends an HTTP header field whose name is specified in
2755 <name> and whose value is defined by <fmt> which follows the log-format
2756 rules (see Custom Log Format in section 8.2.4). This is particularly
2757 useful to pass connection-specific information to the server (eg: the
2758 client's SSL certificate), or to combine several headers into one. This
2759 rule is not final, so it is possible to add other similar rules. Note
2760 that header addition is performed immediately, so one rule might reuse
2761 the resulting header from a previous rule.
2762
2763 - "set-header" does the same as "add-header" except that the header name
2764 is first removed if it existed. This is useful when passing security
2765 information to the server, where the header must not be manipulated by
2766 external users.
2767
Willy Tarreauf4c43c12013-06-11 17:01:13 +02002768 - "set-nice" sets the "nice" factor of the current request being processed.
2769 It only has effect against the other requests being processed at the same
2770 time. The default value is 0, unless altered by the "nice" setting on the
2771 "bind" line. The accepted range is -1024..1024. The higher the value, the
2772 nicest the request will be. Lower values will make the request more
2773 important than other ones. This can be useful to improve the speed of
2774 some requests, or lower the priority of non-important requests. Using
2775 this setting without prior experimentation can cause some major slowdown.
2776
Willy Tarreau9a355ec2013-06-11 17:45:46 +02002777 - "set-log-level" is used to change the log level of the current request
2778 when a certain condition is met. Valid levels are the 8 syslog levels
2779 (see the "log" keyword) plus the special level "silent" which disables
2780 logging for this request. This rule is not final so the last matching
2781 rule wins. This rule can be useful to disable health checks coming from
2782 another equipment.
2783
Willy Tarreau42cf39e2013-06-11 18:51:32 +02002784 - "set-tos" is used to set the TOS or DSCP field value of packets sent to
2785 the client to the value passed in <tos> on platforms which support this.
2786 This value represents the whole 8 bits of the IP TOS field, and can be
2787 expressed both in decimal or hexadecimal format (prefixed by "0x"). Note
2788 that only the 6 higher bits are used in DSCP or TOS, and the two lower
2789 bits are always 0. This can be used to adjust some routing behaviour on
2790 border routers based on some information from the request. See RFC 2474,
2791 2597, 3260 and 4594 for more information.
2792
Willy Tarreau51347ed2013-06-11 19:34:13 +02002793 - "set-mark" is used to set the Netfilter MARK on all packets sent to the
2794 client to the value passed in <mark> on platforms which support it. This
2795 value is an unsigned 32 bit value which can be matched by netfilter and
2796 by the routing table. It can be expressed both in decimal or hexadecimal
2797 format (prefixed by "0x"). This can be useful to force certain packets to
2798 take a different route (for example a cheaper network path for bulk
2799 downloads). This works on Linux kernels 2.6.32 and above and requires
2800 admin privileges.
2801
Willy Tarreau20b0de52012-12-24 15:45:22 +01002802 There is no limit to the number of http-request statements per instance.
2803
2804 It is important to know that http-request rules are processed very early in
2805 the HTTP processing, just after "block" rules and before "reqdel" or "reqrep"
2806 rules. That way, headers added by "add-header"/"set-header" are visible by
2807 almost all further ACL rules.
Krzysztof Piotr Oledzki6b35ce12010-02-01 23:35:44 +01002808
2809 Example:
Cyril Bonté78caf842010-03-10 22:41:43 +01002810 acl nagios src 192.168.129.3
2811 acl local_net src 192.168.0.0/16
2812 acl auth_ok http_auth(L1)
Krzysztof Piotr Oledzki6b35ce12010-02-01 23:35:44 +01002813
Cyril Bonté78caf842010-03-10 22:41:43 +01002814 http-request allow if nagios
2815 http-request allow if local_net auth_ok
2816 http-request auth realm Gimme if local_net auth_ok
2817 http-request deny
Krzysztof Piotr Oledzki6b35ce12010-02-01 23:35:44 +01002818
Cyril Bonté78caf842010-03-10 22:41:43 +01002819 Example:
2820 acl auth_ok http_auth_group(L1) G1
Cyril Bonté78caf842010-03-10 22:41:43 +01002821 http-request auth unless auth_ok
Krzysztof Piotr Oledzki6b35ce12010-02-01 23:35:44 +01002822
Willy Tarreau20b0de52012-12-24 15:45:22 +01002823 Example:
2824 http-request set-header X-Haproxy-Current-Date %T
2825 http-request set-header X-SSL %[ssl_fc]
2826 http-request set-header X-SSL-Session_ID %[ssl_fc_session_id]
2827 http-request set-header X-SSL-Client-Verify %[ssl_c_verify]
2828 http-request set-header X-SSL-Client-DN %{+Q}[ssl_c_s_dn]
2829 http-request set-header X-SSL-Client-CN %{+Q}[ssl_c_s_dn(cn)]
2830 http-request set-header X-SSL-Issuer %{+Q}[ssl_c_i_dn]
2831 http-request set-header X-SSL-Client-NotBefore %{+Q}[ssl_c_notbefore]
2832 http-request set-header X-SSL-Client-NotAfter %{+Q}[ssl_c_notafter]
2833
Cyril Bonté2be1b3f2010-09-30 23:46:30 +02002834 See also : "stats http-request", section 3.4 about userlists and section 7
2835 about ACL usage.
Willy Tarreauef781042010-01-27 11:53:01 +01002836
Willy Tarreauf4c43c12013-06-11 17:01:13 +02002837http-response { allow | deny | add-header <name> <fmt> | set-nice <nice> |
Willy Tarreau51347ed2013-06-11 19:34:13 +02002838 set-header <name> <fmt> | set-log-level <level> |
Lukas Tribus2dd1d1a2013-06-19 23:34:41 +02002839 set-mark <mark> | set-tos <tos> }
2840 [ { if | unless } <condition> ]
Willy Tarreaue365c0b2013-06-11 16:06:12 +02002841 Access control for Layer 7 responses
2842
2843 May be used in sections: defaults | frontend | listen | backend
2844 no | yes | yes | yes
2845
2846 The http-response statement defines a set of rules which apply to layer 7
2847 processing. The rules are evaluated in their declaration order when they are
2848 met in a frontend, listen or backend section. Any rule may optionally be
2849 followed by an ACL-based condition, in which case it will only be evaluated
2850 if the condition is true. Since these rules apply on responses, the backend
2851 rules are applied first, followed by the frontend's rules.
2852
2853 The first keyword is the rule's action. Currently supported actions include :
2854 - "allow" : this stops the evaluation of the rules and lets the response
2855 pass the check. No further "http-response" rules are evaluated for the
2856 current section.
2857
2858 - "deny" : this stops the evaluation of the rules and immediately rejects
2859 the response and emits an HTTP 502 error. No further "http-response"
2860 rules are evaluated.
2861
2862 - "add-header" appends an HTTP header field whose name is specified in
2863 <name> and whose value is defined by <fmt> which follows the log-format
2864 rules (see Custom Log Format in section 8.2.4). This may be used to send
2865 a cookie to a client for example, or to pass some internal information.
2866 This rule is not final, so it is possible to add other similar rules.
2867 Note that header addition is performed immediately, so one rule might
2868 reuse the resulting header from a previous rule.
2869
2870 - "set-header" does the same as "add-header" except that the header name
2871 is first removed if it existed. This is useful when passing security
2872 information to the server, where the header must not be manipulated by
2873 external users.
2874
Willy Tarreauf4c43c12013-06-11 17:01:13 +02002875 - "set-nice" sets the "nice" factor of the current request being processed.
2876 It only has effect against the other requests being processed at the same
2877 time. The default value is 0, unless altered by the "nice" setting on the
2878 "bind" line. The accepted range is -1024..1024. The higher the value, the
2879 nicest the request will be. Lower values will make the request more
2880 important than other ones. This can be useful to improve the speed of
2881 some requests, or lower the priority of non-important requests. Using
2882 this setting without prior experimentation can cause some major slowdown.
2883
Willy Tarreau9a355ec2013-06-11 17:45:46 +02002884 - "set-log-level" is used to change the log level of the current request
2885 when a certain condition is met. Valid levels are the 8 syslog levels
2886 (see the "log" keyword) plus the special level "silent" which disables
2887 logging for this request. This rule is not final so the last matching
2888 rule wins. This rule can be useful to disable health checks coming from
2889 another equipment.
2890
Willy Tarreau42cf39e2013-06-11 18:51:32 +02002891 - "set-tos" is used to set the TOS or DSCP field value of packets sent to
2892 the client to the value passed in <tos> on platforms which support this.
2893 This value represents the whole 8 bits of the IP TOS field, and can be
2894 expressed both in decimal or hexadecimal format (prefixed by "0x"). Note
2895 that only the 6 higher bits are used in DSCP or TOS, and the two lower
2896 bits are always 0. This can be used to adjust some routing behaviour on
2897 border routers based on some information from the request. See RFC 2474,
2898 2597, 3260 and 4594 for more information.
2899
Willy Tarreau51347ed2013-06-11 19:34:13 +02002900 - "set-mark" is used to set the Netfilter MARK on all packets sent to the
2901 client to the value passed in <mark> on platforms which support it. This
2902 value is an unsigned 32 bit value which can be matched by netfilter and
2903 by the routing table. It can be expressed both in decimal or hexadecimal
2904 format (prefixed by "0x"). This can be useful to force certain packets to
2905 take a different route (for example a cheaper network path for bulk
2906 downloads). This works on Linux kernels 2.6.32 and above and requires
2907 admin privileges.
2908
Willy Tarreaue365c0b2013-06-11 16:06:12 +02002909 There is no limit to the number of http-response statements per instance.
2910
Godbach09250262013-07-02 01:19:15 +08002911 It is important to know that http-response rules are processed very early in
Willy Tarreaue365c0b2013-06-11 16:06:12 +02002912 the HTTP processing, before "reqdel" or "reqrep" rules. That way, headers
2913 added by "add-header"/"set-header" are visible by almost all further ACL
2914 rules.
2915
2916 See also : "http-request", section 3.4 about userlists and section 7 about
2917 ACL usage.
2918
Mark Lamourinec2247f02012-01-04 13:02:01 -05002919http-send-name-header [<header>]
2920 Add the server name to a request. Use the header string given by <header>
2921
2922 May be used in sections: defaults | frontend | listen | backend
2923 yes | no | yes | yes
2924
2925 Arguments :
2926
2927 <header> The header string to use to send the server name
2928
2929 The "http-send-name-header" statement causes the name of the target
2930 server to be added to the headers of an HTTP request. The name
2931 is added with the header string proved.
2932
2933 See also : "server"
2934
Krzysztof Piotr Oledzkif58a9622008-02-23 01:19:10 +01002935id <value>
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002936 Set a persistent ID to a proxy.
2937 May be used in sections : defaults | frontend | listen | backend
2938 no | yes | yes | yes
2939 Arguments : none
2940
2941 Set a persistent ID for the proxy. This ID must be unique and positive.
2942 An unused ID will automatically be assigned if unset. The first assigned
2943 value will be 1. This ID is currently only returned in statistics.
Krzysztof Piotr Oledzkif58a9622008-02-23 01:19:10 +01002944
2945
Cyril Bonté0d4bf012010-04-25 23:21:46 +02002946ignore-persist { if | unless } <condition>
2947 Declare a condition to ignore persistence
2948 May be used in sections: defaults | frontend | listen | backend
2949 no | yes | yes | yes
2950
2951 By default, when cookie persistence is enabled, every requests containing
2952 the cookie are unconditionally persistent (assuming the target server is up
2953 and running).
2954
2955 The "ignore-persist" statement allows one to declare various ACL-based
2956 conditions which, when met, will cause a request to ignore persistence.
2957 This is sometimes useful to load balance requests for static files, which
2958 oftenly don't require persistence. This can also be used to fully disable
2959 persistence for a specific User-Agent (for example, some web crawler bots).
2960
2961 Combined with "appsession", it can also help reduce HAProxy memory usage, as
2962 the appsession table won't grow if persistence is ignored.
2963
2964 The persistence is ignored when an "if" condition is met, or unless an
2965 "unless" condition is met.
2966
2967 See also : "force-persist", "cookie", and section 7 about ACL usage.
2968
2969
Willy Tarreau2769aa02007-12-27 18:26:09 +01002970log global
Willy Tarreauf7edefa2009-05-10 17:20:05 +02002971log <address> <facility> [<level> [<minlevel>]]
William Lallemand0f99e342011-10-12 17:50:54 +02002972no log
Willy Tarreau2769aa02007-12-27 18:26:09 +01002973 Enable per-instance logging of events and traffic.
2974 May be used in sections : defaults | frontend | listen | backend
2975 yes | yes | yes | yes
William Lallemand0f99e342011-10-12 17:50:54 +02002976
2977 Prefix :
2978 no should be used when the logger list must be flushed. For example,
2979 if you don't want to inherit from the default logger list. This
2980 prefix does not allow arguments.
2981
Willy Tarreau2769aa02007-12-27 18:26:09 +01002982 Arguments :
2983 global should be used when the instance's logging parameters are the
2984 same as the global ones. This is the most common usage. "global"
2985 replaces <address>, <facility> and <level> with those of the log
2986 entries found in the "global" section. Only one "log global"
2987 statement may be used per instance, and this form takes no other
2988 parameter.
2989
2990 <address> indicates where to send the logs. It takes the same format as
2991 for the "global" section's logs, and can be one of :
2992
2993 - An IPv4 address optionally followed by a colon (':') and a UDP
2994 port. If no port is specified, 514 is used by default (the
2995 standard syslog port).
2996
David du Colombier24bb5f52011-03-17 10:40:23 +01002997 - An IPv6 address followed by a colon (':') and optionally a UDP
2998 port. If no port is specified, 514 is used by default (the
2999 standard syslog port).
3000
Willy Tarreau2769aa02007-12-27 18:26:09 +01003001 - A filesystem path to a UNIX domain socket, keeping in mind
3002 considerations for chroot (be sure the path is accessible
3003 inside the chroot) and uid/gid (be sure the path is
3004 appropriately writeable).
3005
Willy Tarreaudad36a32013-03-11 01:20:04 +01003006 Any part of the address string may reference any number of
3007 environment variables by preceding their name with a dollar
3008 sign ('$') and optionally enclosing them with braces ('{}'),
3009 similarly to what is done in Bourne shell.
3010
Willy Tarreau2769aa02007-12-27 18:26:09 +01003011 <facility> must be one of the 24 standard syslog facilities :
3012
3013 kern user mail daemon auth syslog lpr news
3014 uucp cron auth2 ftp ntp audit alert cron2
3015 local0 local1 local2 local3 local4 local5 local6 local7
3016
3017 <level> is optional and can be specified to filter outgoing messages. By
3018 default, all messages are sent. If a level is specified, only
3019 messages with a severity at least as important as this level
Willy Tarreauf7edefa2009-05-10 17:20:05 +02003020 will be sent. An optional minimum level can be specified. If it
3021 is set, logs emitted with a more severe level than this one will
3022 be capped to this level. This is used to avoid sending "emerg"
3023 messages on all terminals on some default syslog configurations.
3024 Eight levels are known :
Willy Tarreau2769aa02007-12-27 18:26:09 +01003025
3026 emerg alert crit err warning notice info debug
3027
William Lallemand0f99e342011-10-12 17:50:54 +02003028 It is important to keep in mind that it is the frontend which decides what to
3029 log from a connection, and that in case of content switching, the log entries
3030 from the backend will be ignored. Connections are logged at level "info".
Willy Tarreaucc6c8912009-02-22 10:53:55 +01003031
3032 However, backend log declaration define how and where servers status changes
3033 will be logged. Level "notice" will be used to indicate a server going up,
3034 "warning" will be used for termination signals and definitive service
3035 termination, and "alert" will be used for when a server goes down.
3036
3037 Note : According to RFC3164, messages are truncated to 1024 bytes before
3038 being emitted.
Willy Tarreau2769aa02007-12-27 18:26:09 +01003039
3040 Example :
3041 log global
Willy Tarreauf7edefa2009-05-10 17:20:05 +02003042 log 127.0.0.1:514 local0 notice # only send important events
3043 log 127.0.0.1:514 local0 notice notice # same but limit output level
Willy Tarreaudad36a32013-03-11 01:20:04 +01003044 log ${LOCAL_SYSLOG}:514 local0 notice # send to local server
3045
Willy Tarreau2769aa02007-12-27 18:26:09 +01003046
William Lallemand48940402012-01-30 16:47:22 +01003047log-format <string>
3048 Allows you to custom a log line.
3049
3050 See also : Custom Log Format (8.2.4)
3051
Willy Tarreau2769aa02007-12-27 18:26:09 +01003052
3053maxconn <conns>
3054 Fix the maximum number of concurrent connections on a frontend
3055 May be used in sections : defaults | frontend | listen | backend
3056 yes | yes | yes | no
3057 Arguments :
3058 <conns> is the maximum number of concurrent connections the frontend will
3059 accept to serve. Excess connections will be queued by the system
3060 in the socket's listen queue and will be served once a connection
3061 closes.
3062
3063 If the system supports it, it can be useful on big sites to raise this limit
3064 very high so that haproxy manages connection queues, instead of leaving the
3065 clients with unanswered connection attempts. This value should not exceed the
3066 global maxconn. Also, keep in mind that a connection contains two buffers
3067 of 8kB each, as well as some other data resulting in about 17 kB of RAM being
3068 consumed per established connection. That means that a medium system equipped
3069 with 1GB of RAM can withstand around 40000-50000 concurrent connections if
3070 properly tuned.
3071
3072 Also, when <conns> is set to large values, it is possible that the servers
3073 are not sized to accept such loads, and for this reason it is generally wise
3074 to assign them some reasonable connection limits.
3075
Vincent Bernat6341be52012-06-27 17:18:30 +02003076 By default, this value is set to 2000.
3077
Willy Tarreau2769aa02007-12-27 18:26:09 +01003078 See also : "server", global section's "maxconn", "fullconn"
3079
3080
3081mode { tcp|http|health }
3082 Set the running mode or protocol of the instance
3083 May be used in sections : defaults | frontend | listen | backend
3084 yes | yes | yes | yes
3085 Arguments :
3086 tcp The instance will work in pure TCP mode. A full-duplex connection
3087 will be established between clients and servers, and no layer 7
3088 examination will be performed. This is the default mode. It
3089 should be used for SSL, SSH, SMTP, ...
3090
3091 http The instance will work in HTTP mode. The client request will be
3092 analyzed in depth before connecting to any server. Any request
3093 which is not RFC-compliant will be rejected. Layer 7 filtering,
3094 processing and switching will be possible. This is the mode which
3095 brings HAProxy most of its value.
3096
3097 health The instance will work in "health" mode. It will just reply "OK"
Willy Tarreau82569f92012-09-27 23:48:56 +02003098 to incoming connections and close the connection. Alternatively,
3099 If the "httpchk" option is set, "HTTP/1.0 200 OK" will be sent
3100 instead. Nothing will be logged in either case. This mode is used
3101 to reply to external components health checks. This mode is
3102 deprecated and should not be used anymore as it is possible to do
3103 the same and even better by combining TCP or HTTP modes with the
3104 "monitor" keyword.
Willy Tarreau2769aa02007-12-27 18:26:09 +01003105
Cyril Bonté108cf6e2012-04-21 23:30:29 +02003106 When doing content switching, it is mandatory that the frontend and the
3107 backend are in the same mode (generally HTTP), otherwise the configuration
3108 will be refused.
Willy Tarreau2769aa02007-12-27 18:26:09 +01003109
Cyril Bonté108cf6e2012-04-21 23:30:29 +02003110 Example :
Willy Tarreau2769aa02007-12-27 18:26:09 +01003111 defaults http_instances
3112 mode http
3113
Cyril Bonté108cf6e2012-04-21 23:30:29 +02003114 See also : "monitor", "monitor-net"
Willy Tarreau2769aa02007-12-27 18:26:09 +01003115
Willy Tarreau0ba27502007-12-24 16:55:16 +01003116
Cyril Bontéf0c60612010-02-06 14:44:47 +01003117monitor fail { if | unless } <condition>
Willy Tarreau2769aa02007-12-27 18:26:09 +01003118 Add a condition to report a failure to a monitor HTTP request.
Willy Tarreau0ba27502007-12-24 16:55:16 +01003119 May be used in sections : defaults | frontend | listen | backend
3120 no | yes | yes | no
Willy Tarreau0ba27502007-12-24 16:55:16 +01003121 Arguments :
3122 if <cond> the monitor request will fail if the condition is satisfied,
3123 and will succeed otherwise. The condition should describe a
Krzysztof Piotr Oledzkif8645332009-12-13 21:55:50 +01003124 combined test which must induce a failure if all conditions
Willy Tarreau0ba27502007-12-24 16:55:16 +01003125 are met, for instance a low number of servers both in a
3126 backend and its backup.
3127
3128 unless <cond> the monitor request will succeed only if the condition is
3129 satisfied, and will fail otherwise. Such a condition may be
3130 based on a test on the presence of a minimum number of active
3131 servers in a list of backends.
3132
3133 This statement adds a condition which can force the response to a monitor
3134 request to report a failure. By default, when an external component queries
3135 the URI dedicated to monitoring, a 200 response is returned. When one of the
3136 conditions above is met, haproxy will return 503 instead of 200. This is
3137 very useful to report a site failure to an external component which may base
3138 routing advertisements between multiple sites on the availability reported by
3139 haproxy. In this case, one would rely on an ACL involving the "nbsrv"
Willy Tarreauae94d4d2011-05-11 16:28:49 +02003140 criterion. Note that "monitor fail" only works in HTTP mode. Both status
3141 messages may be tweaked using "errorfile" or "errorloc" if needed.
Willy Tarreau0ba27502007-12-24 16:55:16 +01003142
3143 Example:
3144 frontend www
Willy Tarreau2769aa02007-12-27 18:26:09 +01003145 mode http
Willy Tarreau0ba27502007-12-24 16:55:16 +01003146 acl site_dead nbsrv(dynamic) lt 2
3147 acl site_dead nbsrv(static) lt 2
3148 monitor-uri /site_alive
3149 monitor fail if site_dead
3150
Willy Tarreauae94d4d2011-05-11 16:28:49 +02003151 See also : "monitor-net", "monitor-uri", "errorfile", "errorloc"
Willy Tarreau2769aa02007-12-27 18:26:09 +01003152
3153
3154monitor-net <source>
3155 Declare a source network which is limited to monitor requests
3156 May be used in sections : defaults | frontend | listen | backend
3157 yes | yes | yes | no
3158 Arguments :
3159 <source> is the source IPv4 address or network which will only be able to
3160 get monitor responses to any request. It can be either an IPv4
3161 address, a host name, or an address followed by a slash ('/')
3162 followed by a mask.
3163
3164 In TCP mode, any connection coming from a source matching <source> will cause
3165 the connection to be immediately closed without any log. This allows another
Krzysztof Piotr Oledzkif8645332009-12-13 21:55:50 +01003166 equipment to probe the port and verify that it is still listening, without
Willy Tarreau2769aa02007-12-27 18:26:09 +01003167 forwarding the connection to a remote server.
3168
3169 In HTTP mode, a connection coming from a source matching <source> will be
3170 accepted, the following response will be sent without waiting for a request,
3171 then the connection will be closed : "HTTP/1.0 200 OK". This is normally
3172 enough for any front-end HTTP probe to detect that the service is UP and
Willy Tarreau82569f92012-09-27 23:48:56 +02003173 running without forwarding the request to a backend server. Note that this
3174 response is sent in raw format, without any transformation. This is important
3175 as it means that it will not be SSL-encrypted on SSL listeners.
Willy Tarreau2769aa02007-12-27 18:26:09 +01003176
Willy Tarreau82569f92012-09-27 23:48:56 +02003177 Monitor requests are processed very early, just after tcp-request connection
3178 ACLs which are the only ones able to block them. These connections are short
3179 lived and never wait for any data from the client. They cannot be logged, and
3180 it is the intended purpose. They are only used to report HAProxy's health to
3181 an upper component, nothing more. Please note that "monitor fail" rules do
3182 not apply to connections intercepted by "monitor-net".
Willy Tarreau2769aa02007-12-27 18:26:09 +01003183
Willy Tarreau95cd2832010-03-04 23:36:33 +01003184 Last, please note that only one "monitor-net" statement can be specified in
3185 a frontend. If more than one is found, only the last one will be considered.
Cyril Bonté108cf6e2012-04-21 23:30:29 +02003186
Willy Tarreau2769aa02007-12-27 18:26:09 +01003187 Example :
3188 # addresses .252 and .253 are just probing us.
3189 frontend www
3190 monitor-net 192.168.0.252/31
3191
3192 See also : "monitor fail", "monitor-uri"
3193
3194
3195monitor-uri <uri>
3196 Intercept a URI used by external components' monitor requests
3197 May be used in sections : defaults | frontend | listen | backend
3198 yes | yes | yes | no
3199 Arguments :
3200 <uri> is the exact URI which we want to intercept to return HAProxy's
3201 health status instead of forwarding the request.
3202
3203 When an HTTP request referencing <uri> will be received on a frontend,
3204 HAProxy will not forward it nor log it, but instead will return either
3205 "HTTP/1.0 200 OK" or "HTTP/1.0 503 Service unavailable", depending on failure
3206 conditions defined with "monitor fail". This is normally enough for any
3207 front-end HTTP probe to detect that the service is UP and running without
3208 forwarding the request to a backend server. Note that the HTTP method, the
3209 version and all headers are ignored, but the request must at least be valid
3210 at the HTTP level. This keyword may only be used with an HTTP-mode frontend.
3211
3212 Monitor requests are processed very early. It is not possible to block nor
3213 divert them using ACLs. They cannot be logged either, and it is the intended
3214 purpose. They are only used to report HAProxy's health to an upper component,
3215 nothing more. However, it is possible to add any number of conditions using
3216 "monitor fail" and ACLs so that the result can be adjusted to whatever check
3217 can be imagined (most often the number of available servers in a backend).
3218
3219 Example :
3220 # Use /haproxy_test to report haproxy's status
3221 frontend www
3222 mode http
3223 monitor-uri /haproxy_test
3224
3225 See also : "monitor fail", "monitor-net"
3226
Willy Tarreau0ba27502007-12-24 16:55:16 +01003227
Willy Tarreaubf1f8162007-12-28 17:42:56 +01003228option abortonclose
3229no option abortonclose
3230 Enable or disable early dropping of aborted requests pending in queues.
3231 May be used in sections : defaults | frontend | listen | backend
3232 yes | no | yes | yes
3233 Arguments : none
3234
3235 In presence of very high loads, the servers will take some time to respond.
3236 The per-instance connection queue will inflate, and the response time will
3237 increase respective to the size of the queue times the average per-session
3238 response time. When clients will wait for more than a few seconds, they will
Willy Tarreau198a7442008-01-17 12:05:32 +01003239 often hit the "STOP" button on their browser, leaving a useless request in
Willy Tarreaubf1f8162007-12-28 17:42:56 +01003240 the queue, and slowing down other users, and the servers as well, because the
3241 request will eventually be served, then aborted at the first error
3242 encountered while delivering the response.
3243
3244 As there is no way to distinguish between a full STOP and a simple output
3245 close on the client side, HTTP agents should be conservative and consider
3246 that the client might only have closed its output channel while waiting for
3247 the response. However, this introduces risks of congestion when lots of users
3248 do the same, and is completely useless nowadays because probably no client at
3249 all will close the session while waiting for the response. Some HTTP agents
Willy Tarreaud72758d2010-01-12 10:42:19 +01003250 support this behaviour (Squid, Apache, HAProxy), and others do not (TUX, most
Willy Tarreaubf1f8162007-12-28 17:42:56 +01003251 hardware-based load balancers). So the probability for a closed input channel
Willy Tarreau198a7442008-01-17 12:05:32 +01003252 to represent a user hitting the "STOP" button is close to 100%, and the risk
Willy Tarreaubf1f8162007-12-28 17:42:56 +01003253 of being the single component to break rare but valid traffic is extremely
3254 low, which adds to the temptation to be able to abort a session early while
3255 still not served and not pollute the servers.
3256
3257 In HAProxy, the user can choose the desired behaviour using the option
3258 "abortonclose". By default (without the option) the behaviour is HTTP
3259 compliant and aborted requests will be served. But when the option is
3260 specified, a session with an incoming channel closed will be aborted while
3261 it is still possible, either pending in the queue for a connection slot, or
3262 during the connection establishment if the server has not yet acknowledged
3263 the connection request. This considerably reduces the queue size and the load
3264 on saturated servers when users are tempted to click on STOP, which in turn
Willy Tarreaud72758d2010-01-12 10:42:19 +01003265 reduces the response time for other users.
Willy Tarreaubf1f8162007-12-28 17:42:56 +01003266
3267 If this option has been enabled in a "defaults" section, it can be disabled
3268 in a specific instance by prepending the "no" keyword before it.
3269
3270 See also : "timeout queue" and server's "maxconn" and "maxqueue" parameters
3271
3272
Willy Tarreau4076a152009-04-02 15:18:36 +02003273option accept-invalid-http-request
3274no option accept-invalid-http-request
3275 Enable or disable relaxing of HTTP request parsing
3276 May be used in sections : defaults | frontend | listen | backend
3277 yes | yes | yes | no
3278 Arguments : none
3279
3280 By default, HAProxy complies with RFC2616 in terms of message parsing. This
3281 means that invalid characters in header names are not permitted and cause an
3282 error to be returned to the client. This is the desired behaviour as such
3283 forbidden characters are essentially used to build attacks exploiting server
3284 weaknesses, and bypass security filtering. Sometimes, a buggy browser or
3285 server will emit invalid header names for whatever reason (configuration,
3286 implementation) and the issue will not be immediately fixed. In such a case,
3287 it is possible to relax HAProxy's header name parser to accept any character
Willy Tarreau422246e2012-01-07 23:54:13 +01003288 even if that does not make sense, by specifying this option. Similarly, the
3289 list of characters allowed to appear in a URI is well defined by RFC3986, and
3290 chars 0-31, 32 (space), 34 ('"'), 60 ('<'), 62 ('>'), 92 ('\'), 94 ('^'), 96
3291 ('`'), 123 ('{'), 124 ('|'), 125 ('}'), 127 (delete) and anything above are
3292 not allowed at all. Haproxy always blocks a number of them (0..32, 127). The
3293 remaining ones are blocked by default unless this option is enabled.
Willy Tarreau4076a152009-04-02 15:18:36 +02003294
3295 This option should never be enabled by default as it hides application bugs
3296 and open security breaches. It should only be deployed after a problem has
3297 been confirmed.
3298
3299 When this option is enabled, erroneous header names will still be accepted in
3300 requests, but the complete request will be captured in order to permit later
Willy Tarreau422246e2012-01-07 23:54:13 +01003301 analysis using the "show errors" request on the UNIX stats socket. Similarly,
3302 requests containing invalid chars in the URI part will be logged. Doing this
Willy Tarreau4076a152009-04-02 15:18:36 +02003303 also helps confirming that the issue has been solved.
3304
3305 If this option has been enabled in a "defaults" section, it can be disabled
3306 in a specific instance by prepending the "no" keyword before it.
3307
3308 See also : "option accept-invalid-http-response" and "show errors" on the
3309 stats socket.
3310
3311
3312option accept-invalid-http-response
3313no option accept-invalid-http-response
3314 Enable or disable relaxing of HTTP response parsing
3315 May be used in sections : defaults | frontend | listen | backend
3316 yes | no | yes | yes
3317 Arguments : none
3318
3319 By default, HAProxy complies with RFC2616 in terms of message parsing. This
3320 means that invalid characters in header names are not permitted and cause an
3321 error to be returned to the client. This is the desired behaviour as such
3322 forbidden characters are essentially used to build attacks exploiting server
3323 weaknesses, and bypass security filtering. Sometimes, a buggy browser or
3324 server will emit invalid header names for whatever reason (configuration,
3325 implementation) and the issue will not be immediately fixed. In such a case,
3326 it is possible to relax HAProxy's header name parser to accept any character
3327 even if that does not make sense, by specifying this option.
3328
3329 This option should never be enabled by default as it hides application bugs
3330 and open security breaches. It should only be deployed after a problem has
3331 been confirmed.
3332
3333 When this option is enabled, erroneous header names will still be accepted in
3334 responses, but the complete response will be captured in order to permit
3335 later analysis using the "show errors" request on the UNIX stats socket.
3336 Doing this also helps confirming that the issue has been solved.
3337
3338 If this option has been enabled in a "defaults" section, it can be disabled
3339 in a specific instance by prepending the "no" keyword before it.
3340
3341 See also : "option accept-invalid-http-request" and "show errors" on the
3342 stats socket.
3343
3344
Willy Tarreaubf1f8162007-12-28 17:42:56 +01003345option allbackups
3346no option allbackups
3347 Use either all backup servers at a time or only the first one
3348 May be used in sections : defaults | frontend | listen | backend
3349 yes | no | yes | yes
3350 Arguments : none
3351
3352 By default, the first operational backup server gets all traffic when normal
3353 servers are all down. Sometimes, it may be preferred to use multiple backups
3354 at once, because one will not be enough. When "option allbackups" is enabled,
3355 the load balancing will be performed among all backup servers when all normal
3356 ones are unavailable. The same load balancing algorithm will be used and the
3357 servers' weights will be respected. Thus, there will not be any priority
3358 order between the backup servers anymore.
3359
3360 This option is mostly used with static server farms dedicated to return a
3361 "sorry" page when an application is completely offline.
3362
3363 If this option has been enabled in a "defaults" section, it can be disabled
3364 in a specific instance by prepending the "no" keyword before it.
3365
3366
3367option checkcache
3368no option checkcache
Krzysztof Piotr Oledzkif8645332009-12-13 21:55:50 +01003369 Analyze all server responses and block requests with cacheable cookies
Willy Tarreaubf1f8162007-12-28 17:42:56 +01003370 May be used in sections : defaults | frontend | listen | backend
3371 yes | no | yes | yes
3372 Arguments : none
3373
3374 Some high-level frameworks set application cookies everywhere and do not
3375 always let enough control to the developer to manage how the responses should
Krzysztof Piotr Oledzkif8645332009-12-13 21:55:50 +01003376 be cached. When a session cookie is returned on a cacheable object, there is a
Willy Tarreaubf1f8162007-12-28 17:42:56 +01003377 high risk of session crossing or stealing between users traversing the same
3378 caches. In some situations, it is better to block the response than to let
Willy Tarreau3c92c5f2011-08-28 09:45:47 +02003379 some sensitive session information go in the wild.
Willy Tarreaubf1f8162007-12-28 17:42:56 +01003380
3381 The option "checkcache" enables deep inspection of all server responses for
Krzysztof Piotr Oledzkif8645332009-12-13 21:55:50 +01003382 strict compliance with HTTP specification in terms of cacheability. It
Willy Tarreau198a7442008-01-17 12:05:32 +01003383 carefully checks "Cache-control", "Pragma" and "Set-cookie" headers in server
Willy Tarreaubf1f8162007-12-28 17:42:56 +01003384 response to check if there's a risk of caching a cookie on a client-side
3385 proxy. When this option is enabled, the only responses which can be delivered
Willy Tarreau198a7442008-01-17 12:05:32 +01003386 to the client are :
3387 - all those without "Set-Cookie" header ;
Willy Tarreaubf1f8162007-12-28 17:42:56 +01003388 - all those with a return code other than 200, 203, 206, 300, 301, 410,
Willy Tarreau198a7442008-01-17 12:05:32 +01003389 provided that the server has not set a "Cache-control: public" header ;
Willy Tarreaubf1f8162007-12-28 17:42:56 +01003390 - all those that come from a POST request, provided that the server has not
3391 set a 'Cache-Control: public' header ;
3392 - those with a 'Pragma: no-cache' header
3393 - those with a 'Cache-control: private' header
3394 - those with a 'Cache-control: no-store' header
3395 - those with a 'Cache-control: max-age=0' header
3396 - those with a 'Cache-control: s-maxage=0' header
3397 - those with a 'Cache-control: no-cache' header
3398 - those with a 'Cache-control: no-cache="set-cookie"' header
3399 - those with a 'Cache-control: no-cache="set-cookie,' header
3400 (allowing other fields after set-cookie)
3401
3402 If a response doesn't respect these requirements, then it will be blocked
Willy Tarreau198a7442008-01-17 12:05:32 +01003403 just as if it was from an "rspdeny" filter, with an "HTTP 502 bad gateway".
Willy Tarreaubf1f8162007-12-28 17:42:56 +01003404 The session state shows "PH--" meaning that the proxy blocked the response
Krzysztof Piotr Oledzkif8645332009-12-13 21:55:50 +01003405 during headers processing. Additionally, an alert will be sent in the logs so
Willy Tarreaubf1f8162007-12-28 17:42:56 +01003406 that admins are informed that there's something to be fixed.
3407
3408 Due to the high impact on the application, the application should be tested
3409 in depth with the option enabled before going to production. It is also a
Willy Tarreaud2a4aa22008-01-31 15:28:22 +01003410 good practice to always activate it during tests, even if it is not used in
Willy Tarreaubf1f8162007-12-28 17:42:56 +01003411 production, as it will report potentially dangerous application behaviours.
3412
3413 If this option has been enabled in a "defaults" section, it can be disabled
3414 in a specific instance by prepending the "no" keyword before it.
3415
3416
3417option clitcpka
3418no option clitcpka
3419 Enable or disable the sending of TCP keepalive packets on the client side
3420 May be used in sections : defaults | frontend | listen | backend
3421 yes | yes | yes | no
3422 Arguments : none
3423
3424 When there is a firewall or any session-aware component between a client and
3425 a server, and when the protocol involves very long sessions with long idle
3426 periods (eg: remote desktops), there is a risk that one of the intermediate
3427 components decides to expire a session which has remained idle for too long.
3428
3429 Enabling socket-level TCP keep-alives makes the system regularly send packets
3430 to the other end of the connection, leaving it active. The delay between
3431 keep-alive probes is controlled by the system only and depends both on the
3432 operating system and its tuning parameters.
3433
3434 It is important to understand that keep-alive packets are neither emitted nor
3435 received at the application level. It is only the network stacks which sees
3436 them. For this reason, even if one side of the proxy already uses keep-alives
3437 to maintain its connection alive, those keep-alive packets will not be
3438 forwarded to the other side of the proxy.
3439
3440 Please note that this has nothing to do with HTTP keep-alive.
3441
3442 Using option "clitcpka" enables the emission of TCP keep-alive probes on the
3443 client side of a connection, which should help when session expirations are
3444 noticed between HAProxy and a client.
3445
3446 If this option has been enabled in a "defaults" section, it can be disabled
3447 in a specific instance by prepending the "no" keyword before it.
3448
3449 See also : "option srvtcpka", "option tcpka"
3450
3451
Willy Tarreau0ba27502007-12-24 16:55:16 +01003452option contstats
3453 Enable continuous traffic statistics updates
3454 May be used in sections : defaults | frontend | listen | backend
3455 yes | yes | yes | no
3456 Arguments : none
3457
3458 By default, counters used for statistics calculation are incremented
3459 only when a session finishes. It works quite well when serving small
3460 objects, but with big ones (for example large images or archives) or
3461 with A/V streaming, a graph generated from haproxy counters looks like
3462 a hedgehog. With this option enabled counters get incremented continuously,
3463 during a whole session. Recounting touches a hotpath directly so
3464 it is not enabled by default, as it has small performance impact (~0.5%).
3465
3466
Willy Tarreauc9bd0cc2009-05-10 11:57:02 +02003467option dontlog-normal
3468no option dontlog-normal
3469 Enable or disable logging of normal, successful connections
3470 May be used in sections : defaults | frontend | listen | backend
3471 yes | yes | yes | no
3472 Arguments : none
3473
3474 There are large sites dealing with several thousand connections per second
3475 and for which logging is a major pain. Some of them are even forced to turn
3476 logs off and cannot debug production issues. Setting this option ensures that
3477 normal connections, those which experience no error, no timeout, no retry nor
3478 redispatch, will not be logged. This leaves disk space for anomalies. In HTTP
3479 mode, the response status code is checked and return codes 5xx will still be
3480 logged.
3481
3482 It is strongly discouraged to use this option as most of the time, the key to
3483 complex issues is in the normal logs which will not be logged here. If you
3484 need to separate logs, see the "log-separate-errors" option instead.
3485
Willy Tarreauc57f0e22009-05-10 13:12:33 +02003486 See also : "log", "dontlognull", "log-separate-errors" and section 8 about
Willy Tarreauc9bd0cc2009-05-10 11:57:02 +02003487 logging.
3488
3489
Willy Tarreaubf1f8162007-12-28 17:42:56 +01003490option dontlognull
3491no option dontlognull
3492 Enable or disable logging of null connections
3493 May be used in sections : defaults | frontend | listen | backend
3494 yes | yes | yes | no
3495 Arguments : none
3496
3497 In certain environments, there are components which will regularly connect to
3498 various systems to ensure that they are still alive. It can be the case from
3499 another load balancer as well as from monitoring systems. By default, even a
3500 simple port probe or scan will produce a log. If those connections pollute
3501 the logs too much, it is possible to enable option "dontlognull" to indicate
3502 that a connection on which no data has been transferred will not be logged,
3503 which typically corresponds to those probes.
3504
3505 It is generally recommended not to use this option in uncontrolled
3506 environments (eg: internet), otherwise scans and other malicious activities
3507 would not be logged.
3508
3509 If this option has been enabled in a "defaults" section, it can be disabled
3510 in a specific instance by prepending the "no" keyword before it.
3511
Willy Tarreauc57f0e22009-05-10 13:12:33 +02003512 See also : "log", "monitor-net", "monitor-uri" and section 8 about logging.
Willy Tarreaubf1f8162007-12-28 17:42:56 +01003513
3514
3515option forceclose
3516no option forceclose
3517 Enable or disable active connection closing after response is transferred.
3518 May be used in sections : defaults | frontend | listen | backend
Willy Tarreaua31e5df2009-12-30 01:10:35 +01003519 yes | yes | yes | yes
Willy Tarreaubf1f8162007-12-28 17:42:56 +01003520 Arguments : none
3521
3522 Some HTTP servers do not necessarily close the connections when they receive
3523 the "Connection: close" set by "option httpclose", and if the client does not
3524 close either, then the connection remains open till the timeout expires. This
3525 causes high number of simultaneous connections on the servers and shows high
3526 global session times in the logs.
3527
3528 When this happens, it is possible to use "option forceclose". It will
Willy Tarreau82eeaf22009-12-29 12:09:05 +01003529 actively close the outgoing server channel as soon as the server has finished
Willy Tarreau0dfdf192010-01-05 11:33:11 +01003530 to respond. This option implicitly enables the "httpclose" option. Note that
3531 this option also enables the parsing of the full request and response, which
3532 means we can close the connection to the server very quickly, releasing some
3533 resources earlier than with httpclose.
Willy Tarreaubf1f8162007-12-28 17:42:56 +01003534
Willy Tarreau8a8e1d92010-04-05 16:15:16 +02003535 This option may also be combined with "option http-pretend-keepalive", which
3536 will disable sending of the "Connection: close" header, but will still cause
3537 the connection to be closed once the whole response is received.
3538
Willy Tarreaubf1f8162007-12-28 17:42:56 +01003539 If this option has been enabled in a "defaults" section, it can be disabled
3540 in a specific instance by prepending the "no" keyword before it.
3541
Willy Tarreau8a8e1d92010-04-05 16:15:16 +02003542 See also : "option httpclose" and "option http-pretend-keepalive"
Willy Tarreaubf1f8162007-12-28 17:42:56 +01003543
3544
Willy Tarreau87cf5142011-08-19 22:57:24 +02003545option forwardfor [ except <network> ] [ header <name> ] [ if-none ]
Willy Tarreauc27debf2008-01-06 08:57:02 +01003546 Enable insertion of the X-Forwarded-For header to requests sent to servers
3547 May be used in sections : defaults | frontend | listen | backend
3548 yes | yes | yes | yes
3549 Arguments :
3550 <network> is an optional argument used to disable this option for sources
3551 matching <network>
Ross Westaf72a1d2008-08-03 10:51:45 +02003552 <name> an optional argument to specify a different "X-Forwarded-For"
Willy Tarreaud72758d2010-01-12 10:42:19 +01003553 header name.
Willy Tarreauc27debf2008-01-06 08:57:02 +01003554
3555 Since HAProxy works in reverse-proxy mode, the servers see its IP address as
3556 their client address. This is sometimes annoying when the client's IP address
3557 is expected in server logs. To solve this problem, the well-known HTTP header
3558 "X-Forwarded-For" may be added by HAProxy to all requests sent to the server.
3559 This header contains a value representing the client's IP address. Since this
3560 header is always appended at the end of the existing header list, the server
3561 must be configured to always use the last occurrence of this header only. See
Ross Westaf72a1d2008-08-03 10:51:45 +02003562 the server's manual to find how to enable use of this standard header. Note
3563 that only the last occurrence of the header must be used, since it is really
3564 possible that the client has already brought one.
3565
Willy Tarreaud72758d2010-01-12 10:42:19 +01003566 The keyword "header" may be used to supply a different header name to replace
Ross Westaf72a1d2008-08-03 10:51:45 +02003567 the default "X-Forwarded-For". This can be useful where you might already
Willy Tarreaud72758d2010-01-12 10:42:19 +01003568 have a "X-Forwarded-For" header from a different application (eg: stunnel),
3569 and you need preserve it. Also if your backend server doesn't use the
Ross Westaf72a1d2008-08-03 10:51:45 +02003570 "X-Forwarded-For" header and requires different one (eg: Zeus Web Servers
3571 require "X-Cluster-Client-IP").
Willy Tarreauc27debf2008-01-06 08:57:02 +01003572
3573 Sometimes, a same HAProxy instance may be shared between a direct client
3574 access and a reverse-proxy access (for instance when an SSL reverse-proxy is
3575 used to decrypt HTTPS traffic). It is possible to disable the addition of the
3576 header for a known source address or network by adding the "except" keyword
3577 followed by the network address. In this case, any source IP matching the
3578 network will not cause an addition of this header. Most common uses are with
3579 private networks or 127.0.0.1.
3580
Willy Tarreau87cf5142011-08-19 22:57:24 +02003581 Alternatively, the keyword "if-none" states that the header will only be
3582 added if it is not present. This should only be used in perfectly trusted
3583 environment, as this might cause a security issue if headers reaching haproxy
3584 are under the control of the end-user.
3585
Willy Tarreauc27debf2008-01-06 08:57:02 +01003586 This option may be specified either in the frontend or in the backend. If at
Ross Westaf72a1d2008-08-03 10:51:45 +02003587 least one of them uses it, the header will be added. Note that the backend's
3588 setting of the header subargument takes precedence over the frontend's if
Willy Tarreau87cf5142011-08-19 22:57:24 +02003589 both are defined. In the case of the "if-none" argument, if at least one of
3590 the frontend or the backend does not specify it, it wants the addition to be
3591 mandatory, so it wins.
Willy Tarreauc27debf2008-01-06 08:57:02 +01003592
Willy Tarreau87cf5142011-08-19 22:57:24 +02003593 It is important to note that by default, HAProxy works in tunnel mode and
3594 only inspects the first request of a connection, meaning that only the first
3595 request will have the header appended, which is certainly not what you want.
3596 In order to fix this, ensure that any of the "httpclose", "forceclose" or
3597 "http-server-close" options is set when using this option.
Willy Tarreauc27debf2008-01-06 08:57:02 +01003598
Ross Westaf72a1d2008-08-03 10:51:45 +02003599 Examples :
Willy Tarreauc27debf2008-01-06 08:57:02 +01003600 # Public HTTP address also used by stunnel on the same machine
3601 frontend www
3602 mode http
3603 option forwardfor except 127.0.0.1 # stunnel already adds the header
3604
Ross Westaf72a1d2008-08-03 10:51:45 +02003605 # Those servers want the IP Address in X-Client
3606 backend www
3607 mode http
3608 option forwardfor header X-Client
3609
Willy Tarreau87cf5142011-08-19 22:57:24 +02003610 See also : "option httpclose", "option http-server-close",
3611 "option forceclose"
Willy Tarreauc27debf2008-01-06 08:57:02 +01003612
Willy Tarreau8a8e1d92010-04-05 16:15:16 +02003613
Willy Tarreau96e31212011-05-30 18:10:30 +02003614option http-no-delay
3615no option http-no-delay
3616 Instruct the system to favor low interactive delays over performance in HTTP
3617 May be used in sections : defaults | frontend | listen | backend
3618 yes | yes | yes | yes
3619 Arguments : none
3620
3621 In HTTP, each payload is unidirectional and has no notion of interactivity.
3622 Any agent is expected to queue data somewhat for a reasonably low delay.
3623 There are some very rare server-to-server applications that abuse the HTTP
3624 protocol and expect the payload phase to be highly interactive, with many
3625 interleaved data chunks in both directions within a single request. This is
3626 absolutely not supported by the HTTP specification and will not work across
3627 most proxies or servers. When such applications attempt to do this through
3628 haproxy, it works but they will experience high delays due to the network
3629 optimizations which favor performance by instructing the system to wait for
3630 enough data to be available in order to only send full packets. Typical
3631 delays are around 200 ms per round trip. Note that this only happens with
3632 abnormal uses. Normal uses such as CONNECT requests nor WebSockets are not
3633 affected.
3634
3635 When "option http-no-delay" is present in either the frontend or the backend
3636 used by a connection, all such optimizations will be disabled in order to
3637 make the exchanges as fast as possible. Of course this offers no guarantee on
3638 the functionality, as it may break at any other place. But if it works via
3639 HAProxy, it will work as fast as possible. This option should never be used
3640 by default, and should never be used at all unless such a buggy application
3641 is discovered. The impact of using this option is an increase of bandwidth
3642 usage and CPU usage, which may significantly lower performance in high
3643 latency environments.
3644
3645
Willy Tarreau8a8e1d92010-04-05 16:15:16 +02003646option http-pretend-keepalive
3647no option http-pretend-keepalive
3648 Define whether haproxy will announce keepalive to the server or not
3649 May be used in sections : defaults | frontend | listen | backend
3650 yes | yes | yes | yes
3651 Arguments : none
3652
3653 When running with "option http-server-close" or "option forceclose", haproxy
3654 adds a "Connection: close" header to the request forwarded to the server.
3655 Unfortunately, when some servers see this header, they automatically refrain
3656 from using the chunked encoding for responses of unknown length, while this
3657 is totally unrelated. The immediate effect is that this prevents haproxy from
3658 maintaining the client connection alive. A second effect is that a client or
3659 a cache could receive an incomplete response without being aware of it, and
3660 consider the response complete.
3661
3662 By setting "option http-pretend-keepalive", haproxy will make the server
3663 believe it will keep the connection alive. The server will then not fall back
3664 to the abnormal undesired above. When haproxy gets the whole response, it
3665 will close the connection with the server just as it would do with the
3666 "forceclose" option. That way the client gets a normal response and the
3667 connection is correctly closed on the server side.
3668
3669 It is recommended not to enable this option by default, because most servers
3670 will more efficiently close the connection themselves after the last packet,
3671 and release its buffers slightly earlier. Also, the added packet on the
3672 network could slightly reduce the overall peak performance. However it is
3673 worth noting that when this option is enabled, haproxy will have slightly
3674 less work to do. So if haproxy is the bottleneck on the whole architecture,
3675 enabling this option might save a few CPU cycles.
3676
3677 This option may be set both in a frontend and in a backend. It is enabled if
3678 at least one of the frontend or backend holding a connection has it enabled.
Jamie Gloudonaaa21002012-08-25 00:18:33 -04003679 This option may be combined with "option httpclose", which will cause
Willy Tarreau22a95342010-09-29 14:31:41 +02003680 keepalive to be announced to the server and close to be announced to the
3681 client. This practice is discouraged though.
Willy Tarreau8a8e1d92010-04-05 16:15:16 +02003682
3683 If this option has been enabled in a "defaults" section, it can be disabled
3684 in a specific instance by prepending the "no" keyword before it.
3685
3686 See also : "option forceclose" and "option http-server-close"
3687
Willy Tarreauc27debf2008-01-06 08:57:02 +01003688
Willy Tarreaub608feb2010-01-02 22:47:18 +01003689option http-server-close
3690no option http-server-close
3691 Enable or disable HTTP connection closing on the server side
3692 May be used in sections : defaults | frontend | listen | backend
3693 yes | yes | yes | yes
3694 Arguments : none
3695
Patrick Mezard9ec2ec42010-06-12 17:02:45 +02003696 By default, when a client communicates with a server, HAProxy will only
3697 analyze, log, and process the first request of each connection. Setting
3698 "option http-server-close" enables HTTP connection-close mode on the server
3699 side while keeping the ability to support HTTP keep-alive and pipelining on
3700 the client side. This provides the lowest latency on the client side (slow
3701 network) and the fastest session reuse on the server side to save server
3702 resources, similarly to "option forceclose". It also permits non-keepalive
3703 capable servers to be served in keep-alive mode to the clients if they
3704 conform to the requirements of RFC2616. Please note that some servers do not
3705 always conform to those requirements when they see "Connection: close" in the
3706 request. The effect will be that keep-alive will never be used. A workaround
3707 consists in enabling "option http-pretend-keepalive".
Willy Tarreaub608feb2010-01-02 22:47:18 +01003708
3709 At the moment, logs will not indicate whether requests came from the same
3710 session or not. The accept date reported in the logs corresponds to the end
3711 of the previous request, and the request time corresponds to the time spent
3712 waiting for a new request. The keep-alive request time is still bound to the
Willy Tarreaub16a5742010-01-10 14:46:16 +01003713 timeout defined by "timeout http-keep-alive" or "timeout http-request" if
3714 not set.
Willy Tarreaub608feb2010-01-02 22:47:18 +01003715
3716 This option may be set both in a frontend and in a backend. It is enabled if
3717 at least one of the frontend or backend holding a connection has it enabled.
Willy Tarreau0dfdf192010-01-05 11:33:11 +01003718 It is worth noting that "option forceclose" has precedence over "option
3719 http-server-close" and that combining "http-server-close" with "httpclose"
3720 basically achieve the same result as "forceclose".
Willy Tarreaub608feb2010-01-02 22:47:18 +01003721
3722 If this option has been enabled in a "defaults" section, it can be disabled
3723 in a specific instance by prepending the "no" keyword before it.
3724
Patrick Mezard9ec2ec42010-06-12 17:02:45 +02003725 See also : "option forceclose", "option http-pretend-keepalive",
3726 "option httpclose" and "1.1. The HTTP transaction model".
Willy Tarreaub608feb2010-01-02 22:47:18 +01003727
3728
Willy Tarreau88d349d2010-01-25 12:15:43 +01003729option http-use-proxy-header
Cyril Bontéf0c60612010-02-06 14:44:47 +01003730no option http-use-proxy-header
Willy Tarreau88d349d2010-01-25 12:15:43 +01003731 Make use of non-standard Proxy-Connection header instead of Connection
3732 May be used in sections : defaults | frontend | listen | backend
3733 yes | yes | yes | no
3734 Arguments : none
3735
3736 While RFC2616 explicitly states that HTTP/1.1 agents must use the
3737 Connection header to indicate their wish of persistent or non-persistent
3738 connections, both browsers and proxies ignore this header for proxied
3739 connections and make use of the undocumented, non-standard Proxy-Connection
3740 header instead. The issue begins when trying to put a load balancer between
3741 browsers and such proxies, because there will be a difference between what
3742 haproxy understands and what the client and the proxy agree on.
3743
3744 By setting this option in a frontend, haproxy can automatically switch to use
3745 that non-standard header if it sees proxied requests. A proxied request is
3746 defined here as one where the URI begins with neither a '/' nor a '*'. The
3747 choice of header only affects requests passing through proxies making use of
3748 one of the "httpclose", "forceclose" and "http-server-close" options. Note
3749 that this option can only be specified in a frontend and will affect the
3750 request along its whole life.
3751
Willy Tarreau844a7e72010-01-31 21:46:18 +01003752 Also, when this option is set, a request which requires authentication will
3753 automatically switch to use proxy authentication headers if it is itself a
3754 proxied request. That makes it possible to check or enforce authentication in
3755 front of an existing proxy.
3756
Willy Tarreau88d349d2010-01-25 12:15:43 +01003757 This option should normally never be used, except in front of a proxy.
3758
3759 See also : "option httpclose", "option forceclose" and "option
3760 http-server-close".
3761
3762
Willy Tarreaud63335a2010-02-26 12:56:52 +01003763option httpchk
3764option httpchk <uri>
3765option httpchk <method> <uri>
3766option httpchk <method> <uri> <version>
3767 Enable HTTP protocol to check on the servers health
3768 May be used in sections : defaults | frontend | listen | backend
3769 yes | no | yes | yes
3770 Arguments :
3771 <method> is the optional HTTP method used with the requests. When not set,
3772 the "OPTIONS" method is used, as it generally requires low server
3773 processing and is easy to filter out from the logs. Any method
3774 may be used, though it is not recommended to invent non-standard
3775 ones.
3776
3777 <uri> is the URI referenced in the HTTP requests. It defaults to " / "
3778 which is accessible by default on almost any server, but may be
3779 changed to any other URI. Query strings are permitted.
3780
3781 <version> is the optional HTTP version string. It defaults to "HTTP/1.0"
3782 but some servers might behave incorrectly in HTTP 1.0, so turning
3783 it to HTTP/1.1 may sometimes help. Note that the Host field is
3784 mandatory in HTTP/1.1, and as a trick, it is possible to pass it
3785 after "\r\n" following the version string.
3786
3787 By default, server health checks only consist in trying to establish a TCP
3788 connection. When "option httpchk" is specified, a complete HTTP request is
3789 sent once the TCP connection is established, and responses 2xx and 3xx are
3790 considered valid, while all other ones indicate a server failure, including
3791 the lack of any response.
3792
3793 The port and interval are specified in the server configuration.
3794
3795 This option does not necessarily require an HTTP backend, it also works with
3796 plain TCP backends. This is particularly useful to check simple scripts bound
3797 to some dedicated ports using the inetd daemon.
3798
3799 Examples :
3800 # Relay HTTPS traffic to Apache instance and check service availability
3801 # using HTTP request "OPTIONS * HTTP/1.1" on port 80.
3802 backend https_relay
3803 mode tcp
3804 option httpchk OPTIONS * HTTP/1.1\r\nHost:\ www
3805 server apache1 192.168.1.1:443 check port 80
3806
Simon Hormana2b9dad2013-02-12 10:45:54 +09003807 See also : "option lb-agent-chk", "option ssl-hello-chk", "option smtpchk",
3808 "option mysql-check", "option pgsql-check", "http-check" and
3809 the "check", "port" and "inter" server options.
Willy Tarreaud63335a2010-02-26 12:56:52 +01003810
3811
Willy Tarreauc27debf2008-01-06 08:57:02 +01003812option httpclose
3813no option httpclose
3814 Enable or disable passive HTTP connection closing
3815 May be used in sections : defaults | frontend | listen | backend
3816 yes | yes | yes | yes
3817 Arguments : none
3818
Patrick Mezard9ec2ec42010-06-12 17:02:45 +02003819 By default, when a client communicates with a server, HAProxy will only
3820 analyze, log, and process the first request of each connection. If "option
3821 httpclose" is set, it will check if a "Connection: close" header is already
3822 set in each direction, and will add one if missing. Each end should react to
3823 this by actively closing the TCP connection after each transfer, thus
3824 resulting in a switch to the HTTP close mode. Any "Connection" header
3825 different from "close" will also be removed.
Willy Tarreauc27debf2008-01-06 08:57:02 +01003826
3827 It seldom happens that some servers incorrectly ignore this header and do not
Jamie Gloudonaaa21002012-08-25 00:18:33 -04003828 close the connection even though they reply "Connection: close". For this
Willy Tarreau0dfdf192010-01-05 11:33:11 +01003829 reason, they are not compatible with older HTTP 1.0 browsers. If this happens
3830 it is possible to use the "option forceclose" which actively closes the
3831 request connection once the server responds. Option "forceclose" also
3832 releases the server connection earlier because it does not have to wait for
3833 the client to acknowledge it.
Willy Tarreauc27debf2008-01-06 08:57:02 +01003834
3835 This option may be set both in a frontend and in a backend. It is enabled if
3836 at least one of the frontend or backend holding a connection has it enabled.
3837 If "option forceclose" is specified too, it has precedence over "httpclose".
Willy Tarreau0dfdf192010-01-05 11:33:11 +01003838 If "option http-server-close" is enabled at the same time as "httpclose", it
3839 basically achieves the same result as "option forceclose".
Willy Tarreauc27debf2008-01-06 08:57:02 +01003840
3841 If this option has been enabled in a "defaults" section, it can be disabled
3842 in a specific instance by prepending the "no" keyword before it.
3843
Patrick Mezard9ec2ec42010-06-12 17:02:45 +02003844 See also : "option forceclose", "option http-server-close" and
3845 "1.1. The HTTP transaction model".
Willy Tarreauc27debf2008-01-06 08:57:02 +01003846
3847
Emeric Brun3a058f32009-06-30 18:26:00 +02003848option httplog [ clf ]
Willy Tarreauc27debf2008-01-06 08:57:02 +01003849 Enable logging of HTTP request, session state and timers
3850 May be used in sections : defaults | frontend | listen | backend
3851 yes | yes | yes | yes
Emeric Brun3a058f32009-06-30 18:26:00 +02003852 Arguments :
3853 clf if the "clf" argument is added, then the output format will be
3854 the CLF format instead of HAProxy's default HTTP format. You can
3855 use this when you need to feed HAProxy's logs through a specific
3856 log analyser which only support the CLF format and which is not
3857 extensible.
Willy Tarreauc27debf2008-01-06 08:57:02 +01003858
3859 By default, the log output format is very poor, as it only contains the
3860 source and destination addresses, and the instance name. By specifying
3861 "option httplog", each log line turns into a much richer format including,
3862 but not limited to, the HTTP request, the connection timers, the session
3863 status, the connections numbers, the captured headers and cookies, the
3864 frontend, backend and server name, and of course the source address and
3865 ports.
3866
3867 This option may be set either in the frontend or the backend.
3868
Emeric Brun3a058f32009-06-30 18:26:00 +02003869 If this option has been enabled in a "defaults" section, it can be disabled
3870 in a specific instance by prepending the "no" keyword before it. Specifying
3871 only "option httplog" will automatically clear the 'clf' mode if it was set
3872 by default.
3873
Willy Tarreauc57f0e22009-05-10 13:12:33 +02003874 See also : section 8 about logging.
Willy Tarreauc27debf2008-01-06 08:57:02 +01003875
Willy Tarreau55165fe2009-05-10 12:02:55 +02003876
3877option http_proxy
3878no option http_proxy
3879 Enable or disable plain HTTP proxy mode
3880 May be used in sections : defaults | frontend | listen | backend
3881 yes | yes | yes | yes
3882 Arguments : none
3883
3884 It sometimes happens that people need a pure HTTP proxy which understands
3885 basic proxy requests without caching nor any fancy feature. In this case,
3886 it may be worth setting up an HAProxy instance with the "option http_proxy"
3887 set. In this mode, no server is declared, and the connection is forwarded to
3888 the IP address and port found in the URL after the "http://" scheme.
3889
3890 No host address resolution is performed, so this only works when pure IP
3891 addresses are passed. Since this option's usage perimeter is rather limited,
3892 it will probably be used only by experts who know they need exactly it. Last,
3893 if the clients are susceptible of sending keep-alive requests, it will be
Cyril Bonté2409e682010-12-14 22:47:51 +01003894 needed to add "option httpclose" to ensure that all requests will correctly
Willy Tarreau55165fe2009-05-10 12:02:55 +02003895 be analyzed.
3896
3897 If this option has been enabled in a "defaults" section, it can be disabled
3898 in a specific instance by prepending the "no" keyword before it.
3899
3900 Example :
3901 # this backend understands HTTP proxy requests and forwards them directly.
3902 backend direct_forward
3903 option httpclose
3904 option http_proxy
3905
3906 See also : "option httpclose"
3907
Willy Tarreau211ad242009-10-03 21:45:07 +02003908
Jamie Gloudon801a0a32012-08-25 00:18:33 -04003909option independent-streams
3910no option independent-streams
3911 Enable or disable independent timeout processing for both directions
Willy Tarreauf27b5ea2009-10-03 22:01:18 +02003912 May be used in sections : defaults | frontend | listen | backend
3913 yes | yes | yes | yes
3914 Arguments : none
3915
3916 By default, when data is sent over a socket, both the write timeout and the
3917 read timeout for that socket are refreshed, because we consider that there is
3918 activity on that socket, and we have no other means of guessing if we should
3919 receive data or not.
3920
3921 While this default behaviour is desirable for almost all applications, there
3922 exists a situation where it is desirable to disable it, and only refresh the
3923 read timeout if there are incoming data. This happens on sessions with large
3924 timeouts and low amounts of exchanged data such as telnet session. If the
3925 server suddenly disappears, the output data accumulates in the system's
3926 socket buffers, both timeouts are correctly refreshed, and there is no way
3927 to know the server does not receive them, so we don't timeout. However, when
3928 the underlying protocol always echoes sent data, it would be enough by itself
3929 to detect the issue using the read timeout. Note that this problem does not
3930 happen with more verbose protocols because data won't accumulate long in the
3931 socket buffers.
3932
3933 When this option is set on the frontend, it will disable read timeout updates
3934 on data sent to the client. There probably is little use of this case. When
3935 the option is set on the backend, it will disable read timeout updates on
3936 data sent to the server. Doing so will typically break large HTTP posts from
3937 slow lines, so use it with caution.
3938
Jamie Gloudon801a0a32012-08-25 00:18:33 -04003939 Note: older versions used to call this setting "option independant-streams"
3940 with a spelling mistake. This spelling is still supported but
3941 deprecated.
3942
Willy Tarreauce887fd2012-05-12 12:50:00 +02003943 See also : "timeout client", "timeout server" and "timeout tunnel"
Willy Tarreauf27b5ea2009-10-03 22:01:18 +02003944
3945
Simon Hormana2b9dad2013-02-12 10:45:54 +09003946option lb-agent-chk
3947 Use a TCP connection to obtain a metric of server health
3948 May be used in sections : defaults | frontend | listen | backend
3949 yes | no | yes | yes
3950 Arguments : none
3951
3952 This alters health checking behaviour by connecting making a TCP
3953 connection and reading an ASCII string. The string should have one of
3954 the following forms:
3955
3956 * An ASCII representation of an positive integer percentage.
3957 e.g. "75%"
3958
3959 Values in this format will set the weight proportional to the initial
3960 weight of a server as configured when haproxy starts.
3961
3962 * The string "drain".
3963
3964 This will cause the weight of a server to be set to 0, and thus it will
3965 not accept any new connections other than those that are accepted via
3966 persistence.
3967
3968 * The string "down", optionally followed by a description string.
3969
3970 Mark the server as down and log the description string as the reason.
3971
3972 * The string "stopped", optionally followed by a description string.
3973
3974 This currently has the same behaviour as down (iii).
3975
3976 * The string "fail", optionally followed by a description string.
3977
3978 This currently has the same behaviour as down (iii).
3979
3980 The use of an alternate check-port, used to obtain agent heath check
3981 information described above as opposed to the port of the service, may be
3982 useful in conjunction with this option.
3983
3984
Gabor Lekenyb4c81e42010-09-29 18:17:05 +02003985option ldap-check
3986 Use LDAPv3 health checks for server testing
3987 May be used in sections : defaults | frontend | listen | backend
3988 yes | no | yes | yes
3989 Arguments : none
3990
3991 It is possible to test that the server correctly talks LDAPv3 instead of just
3992 testing that it accepts the TCP connection. When this option is set, an
3993 LDAPv3 anonymous simple bind message is sent to the server, and the response
3994 is analyzed to find an LDAPv3 bind response message.
3995
3996 The server is considered valid only when the LDAP response contains success
3997 resultCode (http://tools.ietf.org/html/rfc4511#section-4.1.9).
3998
3999 Logging of bind requests is server dependent see your documentation how to
4000 configure it.
4001
4002 Example :
4003 option ldap-check
4004
4005 See also : "option httpchk"
4006
4007
Willy Tarreau211ad242009-10-03 21:45:07 +02004008option log-health-checks
4009no option log-health-checks
4010 Enable or disable logging of health checks
4011 May be used in sections : defaults | frontend | listen | backend
4012 yes | no | yes | yes
4013 Arguments : none
4014
4015 Enable health checks logging so it possible to check for example what
4016 was happening before a server crash. Failed health check are logged if
4017 server is UP and succeeded health checks if server is DOWN, so the amount
4018 of additional information is limited.
4019
4020 If health check logging is enabled no health check status is printed
4021 when servers is set up UP/DOWN/ENABLED/DISABLED.
4022
4023 See also: "log" and section 8 about logging.
4024
Willy Tarreauc9bd0cc2009-05-10 11:57:02 +02004025
4026option log-separate-errors
4027no option log-separate-errors
4028 Change log level for non-completely successful connections
4029 May be used in sections : defaults | frontend | listen | backend
4030 yes | yes | yes | no
4031 Arguments : none
4032
4033 Sometimes looking for errors in logs is not easy. This option makes haproxy
4034 raise the level of logs containing potentially interesting information such
4035 as errors, timeouts, retries, redispatches, or HTTP status codes 5xx. The
4036 level changes from "info" to "err". This makes it possible to log them
4037 separately to a different file with most syslog daemons. Be careful not to
4038 remove them from the original file, otherwise you would lose ordering which
4039 provides very important information.
4040
4041 Using this option, large sites dealing with several thousand connections per
4042 second may log normal traffic to a rotating buffer and only archive smaller
4043 error logs.
4044
Willy Tarreauc57f0e22009-05-10 13:12:33 +02004045 See also : "log", "dontlognull", "dontlog-normal" and section 8 about
Willy Tarreauc9bd0cc2009-05-10 11:57:02 +02004046 logging.
4047
Willy Tarreauc27debf2008-01-06 08:57:02 +01004048
4049option logasap
4050no option logasap
4051 Enable or disable early logging of HTTP requests
4052 May be used in sections : defaults | frontend | listen | backend
4053 yes | yes | yes | no
4054 Arguments : none
4055
4056 By default, HTTP requests are logged upon termination so that the total
4057 transfer time and the number of bytes appear in the logs. When large objects
4058 are being transferred, it may take a while before the request appears in the
4059 logs. Using "option logasap", the request gets logged as soon as the server
4060 sends the complete headers. The only missing information in the logs will be
4061 the total number of bytes which will indicate everything except the amount
4062 of data transferred, and the total time which will not take the transfer
Willy Tarreaud2a4aa22008-01-31 15:28:22 +01004063 time into account. In such a situation, it's a good practice to capture the
Willy Tarreauc27debf2008-01-06 08:57:02 +01004064 "Content-Length" response header so that the logs at least indicate how many
4065 bytes are expected to be transferred.
4066
Willy Tarreaucc6c8912009-02-22 10:53:55 +01004067 Examples :
4068 listen http_proxy 0.0.0.0:80
4069 mode http
4070 option httplog
4071 option logasap
4072 log 192.168.2.200 local3
4073
4074 >>> Feb 6 12:14:14 localhost \
4075 haproxy[14389]: 10.0.1.2:33317 [06/Feb/2009:12:14:14.655] http-in \
4076 static/srv1 9/10/7/14/+30 200 +243 - - ---- 3/1/1/1/0 1/0 \
4077 "GET /image.iso HTTP/1.0"
4078
Willy Tarreauc57f0e22009-05-10 13:12:33 +02004079 See also : "option httplog", "capture response header", and section 8 about
Willy Tarreauc27debf2008-01-06 08:57:02 +01004080 logging.
4081
4082
Hervé COMMOWICK8776f1b2010-10-18 15:58:36 +02004083option mysql-check [ user <username> ]
4084 Use MySQL health checks for server testing
Hervé COMMOWICK698ae002010-01-12 09:25:13 +01004085 May be used in sections : defaults | frontend | listen | backend
4086 yes | no | yes | yes
Hervé COMMOWICK8776f1b2010-10-18 15:58:36 +02004087 Arguments :
Cyril Bonté108cf6e2012-04-21 23:30:29 +02004088 <username> This is the username which will be used when connecting to MySQL
4089 server.
Hervé COMMOWICK8776f1b2010-10-18 15:58:36 +02004090
4091 If you specify a username, the check consists of sending two MySQL packet,
4092 one Client Authentication packet, and one QUIT packet, to correctly close
4093 MySQL session. We then parse the MySQL Handshake Initialisation packet and/or
4094 Error packet. It is a basic but useful test which does not produce error nor
4095 aborted connect on the server. However, it requires adding an authorization
4096 in the MySQL table, like this :
4097
4098 USE mysql;
4099 INSERT INTO user (Host,User) values ('<ip_of_haproxy>','<username>');
4100 FLUSH PRIVILEGES;
4101
4102 If you don't specify a username (it is deprecated and not recommended), the
4103 check only consists in parsing the Mysql Handshake Initialisation packet or
4104 Error packet, we don't send anything in this mode. It was reported that it
4105 can generate lockout if check is too frequent and/or if there is not enough
4106 traffic. In fact, you need in this case to check MySQL "max_connect_errors"
4107 value as if a connection is established successfully within fewer than MySQL
4108 "max_connect_errors" attempts after a previous connection was interrupted,
4109 the error count for the host is cleared to zero. If HAProxy's server get
4110 blocked, the "FLUSH HOSTS" statement is the only way to unblock it.
4111
4112 Remember that this does not check database presence nor database consistency.
4113 To do this, you can use an external check with xinetd for example.
Hervé COMMOWICK698ae002010-01-12 09:25:13 +01004114
Hervé COMMOWICK212f7782011-06-10 14:05:59 +02004115 The check requires MySQL >=3.22, for older version, please use TCP check.
Hervé COMMOWICK698ae002010-01-12 09:25:13 +01004116
4117 Most often, an incoming MySQL server needs to see the client's IP address for
4118 various purposes, including IP privilege matching and connection logging.
4119 When possible, it is often wise to masquerade the client's IP address when
4120 connecting to the server using the "usesrc" argument of the "source" keyword,
4121 which requires the cttproxy feature to be compiled in, and the MySQL server
4122 to route the client via the machine hosting haproxy.
4123
4124 See also: "option httpchk"
4125
Rauf Kuliyev38b41562011-01-04 15:14:13 +01004126option pgsql-check [ user <username> ]
4127 Use PostgreSQL health checks for server testing
4128 May be used in sections : defaults | frontend | listen | backend
4129 yes | no | yes | yes
4130 Arguments :
Cyril Bonté108cf6e2012-04-21 23:30:29 +02004131 <username> This is the username which will be used when connecting to
4132 PostgreSQL server.
Rauf Kuliyev38b41562011-01-04 15:14:13 +01004133
4134 The check sends a PostgreSQL StartupMessage and waits for either
4135 Authentication request or ErrorResponse message. It is a basic but useful
4136 test which does not produce error nor aborted connect on the server.
4137 This check is identical with the "mysql-check".
4138
4139 See also: "option httpchk"
Hervé COMMOWICK698ae002010-01-12 09:25:13 +01004140
Willy Tarreaua453bdd2008-01-08 19:50:52 +01004141option nolinger
4142no option nolinger
Krzysztof Piotr Oledzkif8645332009-12-13 21:55:50 +01004143 Enable or disable immediate session resource cleaning after close
Willy Tarreaua453bdd2008-01-08 19:50:52 +01004144 May be used in sections: defaults | frontend | listen | backend
4145 yes | yes | yes | yes
Willy Tarreaueabeafa2008-01-16 16:17:06 +01004146 Arguments : none
Willy Tarreaua453bdd2008-01-08 19:50:52 +01004147
4148 When clients or servers abort connections in a dirty way (eg: they are
4149 physically disconnected), the session timeouts triggers and the session is
4150 closed. But it will remain in FIN_WAIT1 state for some time in the system,
4151 using some resources and possibly limiting the ability to establish newer
4152 connections.
4153
4154 When this happens, it is possible to activate "option nolinger" which forces
4155 the system to immediately remove any socket's pending data on close. Thus,
4156 the session is instantly purged from the system's tables. This usually has
4157 side effects such as increased number of TCP resets due to old retransmits
4158 getting immediately rejected. Some firewalls may sometimes complain about
4159 this too.
4160
4161 For this reason, it is not recommended to use this option when not absolutely
4162 needed. You know that you need it when you have thousands of FIN_WAIT1
4163 sessions on your system (TIME_WAIT ones do not count).
4164
4165 This option may be used both on frontends and backends, depending on the side
4166 where it is required. Use it on the frontend for clients, and on the backend
4167 for servers.
4168
4169 If this option has been enabled in a "defaults" section, it can be disabled
4170 in a specific instance by prepending the "no" keyword before it.
4171
4172
Willy Tarreau55165fe2009-05-10 12:02:55 +02004173option originalto [ except <network> ] [ header <name> ]
4174 Enable insertion of the X-Original-To header to requests sent to servers
4175 May be used in sections : defaults | frontend | listen | backend
4176 yes | yes | yes | yes
4177 Arguments :
4178 <network> is an optional argument used to disable this option for sources
4179 matching <network>
4180 <name> an optional argument to specify a different "X-Original-To"
4181 header name.
4182
4183 Since HAProxy can work in transparent mode, every request from a client can
4184 be redirected to the proxy and HAProxy itself can proxy every request to a
4185 complex SQUID environment and the destination host from SO_ORIGINAL_DST will
4186 be lost. This is annoying when you want access rules based on destination ip
4187 addresses. To solve this problem, a new HTTP header "X-Original-To" may be
4188 added by HAProxy to all requests sent to the server. This header contains a
4189 value representing the original destination IP address. Since this must be
4190 configured to always use the last occurrence of this header only. Note that
4191 only the last occurrence of the header must be used, since it is really
4192 possible that the client has already brought one.
4193
4194 The keyword "header" may be used to supply a different header name to replace
4195 the default "X-Original-To". This can be useful where you might already
4196 have a "X-Original-To" header from a different application, and you need
4197 preserve it. Also if your backend server doesn't use the "X-Original-To"
4198 header and requires different one.
4199
4200 Sometimes, a same HAProxy instance may be shared between a direct client
4201 access and a reverse-proxy access (for instance when an SSL reverse-proxy is
4202 used to decrypt HTTPS traffic). It is possible to disable the addition of the
4203 header for a known source address or network by adding the "except" keyword
4204 followed by the network address. In this case, any source IP matching the
4205 network will not cause an addition of this header. Most common uses are with
4206 private networks or 127.0.0.1.
4207
4208 This option may be specified either in the frontend or in the backend. If at
4209 least one of them uses it, the header will be added. Note that the backend's
4210 setting of the header subargument takes precedence over the frontend's if
4211 both are defined.
4212
Willy Tarreau87cf5142011-08-19 22:57:24 +02004213 It is important to note that by default, HAProxy works in tunnel mode and
4214 only inspects the first request of a connection, meaning that only the first
4215 request will have the header appended, which is certainly not what you want.
4216 In order to fix this, ensure that any of the "httpclose", "forceclose" or
4217 "http-server-close" options is set when using this option.
Willy Tarreau55165fe2009-05-10 12:02:55 +02004218
4219 Examples :
4220 # Original Destination address
4221 frontend www
4222 mode http
4223 option originalto except 127.0.0.1
4224
4225 # Those servers want the IP Address in X-Client-Dst
4226 backend www
4227 mode http
4228 option originalto header X-Client-Dst
4229
Willy Tarreau87cf5142011-08-19 22:57:24 +02004230 See also : "option httpclose", "option http-server-close",
4231 "option forceclose"
Willy Tarreau55165fe2009-05-10 12:02:55 +02004232
4233
Willy Tarreaua453bdd2008-01-08 19:50:52 +01004234option persist
4235no option persist
4236 Enable or disable forced persistence on down servers
4237 May be used in sections: defaults | frontend | listen | backend
4238 yes | no | yes | yes
Willy Tarreaueabeafa2008-01-16 16:17:06 +01004239 Arguments : none
Willy Tarreaua453bdd2008-01-08 19:50:52 +01004240
4241 When an HTTP request reaches a backend with a cookie which references a dead
4242 server, by default it is redispatched to another server. It is possible to
4243 force the request to be sent to the dead server first using "option persist"
4244 if absolutely needed. A common use case is when servers are under extreme
4245 load and spend their time flapping. In this case, the users would still be
4246 directed to the server they opened the session on, in the hope they would be
4247 correctly served. It is recommended to use "option redispatch" in conjunction
4248 with this option so that in the event it would not be possible to connect to
4249 the server at all (server definitely dead), the client would finally be
4250 redirected to another valid server.
4251
4252 If this option has been enabled in a "defaults" section, it can be disabled
4253 in a specific instance by prepending the "no" keyword before it.
4254
Willy Tarreau4de91492010-01-22 19:10:05 +01004255 See also : "option redispatch", "retries", "force-persist"
Willy Tarreaua453bdd2008-01-08 19:50:52 +01004256
4257
Krzysztof Piotr Oledzki25b501a2008-01-06 16:36:16 +01004258option redispatch
4259no option redispatch
4260 Enable or disable session redistribution in case of connection failure
4261 May be used in sections: defaults | frontend | listen | backend
4262 yes | no | yes | yes
Willy Tarreaueabeafa2008-01-16 16:17:06 +01004263 Arguments : none
Krzysztof Piotr Oledzki25b501a2008-01-06 16:36:16 +01004264
4265 In HTTP mode, if a server designated by a cookie is down, clients may
4266 definitely stick to it because they cannot flush the cookie, so they will not
4267 be able to access the service anymore.
4268
4269 Specifying "option redispatch" will allow the proxy to break their
4270 persistence and redistribute them to a working server.
4271
4272 It also allows to retry last connection to another server in case of multiple
4273 connection failures. Of course, it requires having "retries" set to a nonzero
4274 value.
Willy Tarreaud72758d2010-01-12 10:42:19 +01004275
Krzysztof Piotr Oledzki25b501a2008-01-06 16:36:16 +01004276 This form is the preferred form, which replaces both the "redispatch" and
4277 "redisp" keywords.
4278
4279 If this option has been enabled in a "defaults" section, it can be disabled
4280 in a specific instance by prepending the "no" keyword before it.
4281
Willy Tarreau4de91492010-01-22 19:10:05 +01004282 See also : "redispatch", "retries", "force-persist"
Krzysztof Piotr Oledzki25b501a2008-01-06 16:36:16 +01004283
Willy Tarreaua453bdd2008-01-08 19:50:52 +01004284
Hervé COMMOWICKec032d62011-08-05 16:23:48 +02004285option redis-check
4286 Use redis health checks for server testing
4287 May be used in sections : defaults | frontend | listen | backend
4288 yes | no | yes | yes
4289 Arguments : none
4290
4291 It is possible to test that the server correctly talks REDIS protocol instead
4292 of just testing that it accepts the TCP connection. When this option is set,
4293 a PING redis command is sent to the server, and the response is analyzed to
4294 find the "+PONG" response message.
4295
4296 Example :
4297 option redis-check
4298
4299 See also : "option httpchk"
4300
4301
Willy Tarreaua453bdd2008-01-08 19:50:52 +01004302option smtpchk
4303option smtpchk <hello> <domain>
4304 Use SMTP health checks for server testing
4305 May be used in sections : defaults | frontend | listen | backend
4306 yes | no | yes | yes
Willy Tarreaud72758d2010-01-12 10:42:19 +01004307 Arguments :
Willy Tarreaua453bdd2008-01-08 19:50:52 +01004308 <hello> is an optional argument. It is the "hello" command to use. It can
4309 be either "HELO" (for SMTP) or "EHLO" (for ESTMP). All other
4310 values will be turned into the default command ("HELO").
4311
4312 <domain> is the domain name to present to the server. It may only be
4313 specified (and is mandatory) if the hello command has been
4314 specified. By default, "localhost" is used.
4315
4316 When "option smtpchk" is set, the health checks will consist in TCP
4317 connections followed by an SMTP command. By default, this command is
4318 "HELO localhost". The server's return code is analyzed and only return codes
4319 starting with a "2" will be considered as valid. All other responses,
4320 including a lack of response will constitute an error and will indicate a
4321 dead server.
4322
4323 This test is meant to be used with SMTP servers or relays. Depending on the
4324 request, it is possible that some servers do not log each connection attempt,
4325 so you may want to experiment to improve the behaviour. Using telnet on port
4326 25 is often easier than adjusting the configuration.
4327
4328 Most often, an incoming SMTP server needs to see the client's IP address for
4329 various purposes, including spam filtering, anti-spoofing and logging. When
4330 possible, it is often wise to masquerade the client's IP address when
4331 connecting to the server using the "usesrc" argument of the "source" keyword,
4332 which requires the cttproxy feature to be compiled in.
4333
4334 Example :
4335 option smtpchk HELO mydomain.org
4336
4337 See also : "option httpchk", "source"
4338
Krzysztof Piotr Oledzki25b501a2008-01-06 16:36:16 +01004339
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02004340option socket-stats
4341no option socket-stats
4342
4343 Enable or disable collecting & providing separate statistics for each socket.
4344 May be used in sections : defaults | frontend | listen | backend
4345 yes | yes | yes | no
4346
4347 Arguments : none
4348
4349
Willy Tarreauff4f82d2009-02-06 11:28:13 +01004350option splice-auto
4351no option splice-auto
4352 Enable or disable automatic kernel acceleration on sockets in both directions
4353 May be used in sections : defaults | frontend | listen | backend
4354 yes | yes | yes | yes
4355 Arguments : none
4356
4357 When this option is enabled either on a frontend or on a backend, haproxy
4358 will automatically evaluate the opportunity to use kernel tcp splicing to
4359 forward data between the client and the server, in either direction. Haproxy
4360 uses heuristics to estimate if kernel splicing might improve performance or
Krzysztof Piotr Oledzkif8645332009-12-13 21:55:50 +01004361 not. Both directions are handled independently. Note that the heuristics used
Willy Tarreauff4f82d2009-02-06 11:28:13 +01004362 are not much aggressive in order to limit excessive use of splicing. This
4363 option requires splicing to be enabled at compile time, and may be globally
4364 disabled with the global option "nosplice". Since splice uses pipes, using it
4365 requires that there are enough spare pipes.
4366
4367 Important note: kernel-based TCP splicing is a Linux-specific feature which
4368 first appeared in kernel 2.6.25. It offers kernel-based acceleration to
4369 transfer data between sockets without copying these data to user-space, thus
4370 providing noticeable performance gains and CPU cycles savings. Since many
4371 early implementations are buggy, corrupt data and/or are inefficient, this
4372 feature is not enabled by default, and it should be used with extreme care.
4373 While it is not possible to detect the correctness of an implementation,
4374 2.6.29 is the first version offering a properly working implementation. In
4375 case of doubt, splicing may be globally disabled using the global "nosplice"
4376 keyword.
4377
4378 Example :
4379 option splice-auto
4380
4381 If this option has been enabled in a "defaults" section, it can be disabled
4382 in a specific instance by prepending the "no" keyword before it.
4383
4384 See also : "option splice-request", "option splice-response", and global
4385 options "nosplice" and "maxpipes"
4386
4387
4388option splice-request
4389no option splice-request
4390 Enable or disable automatic kernel acceleration on sockets for requests
4391 May be used in sections : defaults | frontend | listen | backend
4392 yes | yes | yes | yes
4393 Arguments : none
4394
4395 When this option is enabled either on a frontend or on a backend, haproxy
Jamie Gloudonaaa21002012-08-25 00:18:33 -04004396 will use kernel tcp splicing whenever possible to forward data going from
Willy Tarreauff4f82d2009-02-06 11:28:13 +01004397 the client to the server. It might still use the recv/send scheme if there
4398 are no spare pipes left. This option requires splicing to be enabled at
4399 compile time, and may be globally disabled with the global option "nosplice".
4400 Since splice uses pipes, using it requires that there are enough spare pipes.
4401
4402 Important note: see "option splice-auto" for usage limitations.
4403
4404 Example :
4405 option splice-request
4406
4407 If this option has been enabled in a "defaults" section, it can be disabled
4408 in a specific instance by prepending the "no" keyword before it.
4409
4410 See also : "option splice-auto", "option splice-response", and global options
4411 "nosplice" and "maxpipes"
4412
4413
4414option splice-response
4415no option splice-response
4416 Enable or disable automatic kernel acceleration on sockets for responses
4417 May be used in sections : defaults | frontend | listen | backend
4418 yes | yes | yes | yes
4419 Arguments : none
4420
4421 When this option is enabled either on a frontend or on a backend, haproxy
Jamie Gloudonaaa21002012-08-25 00:18:33 -04004422 will use kernel tcp splicing whenever possible to forward data going from
Willy Tarreauff4f82d2009-02-06 11:28:13 +01004423 the server to the client. It might still use the recv/send scheme if there
4424 are no spare pipes left. This option requires splicing to be enabled at
4425 compile time, and may be globally disabled with the global option "nosplice".
4426 Since splice uses pipes, using it requires that there are enough spare pipes.
4427
4428 Important note: see "option splice-auto" for usage limitations.
4429
4430 Example :
4431 option splice-response
4432
4433 If this option has been enabled in a "defaults" section, it can be disabled
4434 in a specific instance by prepending the "no" keyword before it.
4435
4436 See also : "option splice-auto", "option splice-request", and global options
4437 "nosplice" and "maxpipes"
4438
4439
Willy Tarreaubf1f8162007-12-28 17:42:56 +01004440option srvtcpka
4441no option srvtcpka
4442 Enable or disable the sending of TCP keepalive packets on the server side
4443 May be used in sections : defaults | frontend | listen | backend
4444 yes | no | yes | yes
4445 Arguments : none
4446
4447 When there is a firewall or any session-aware component between a client and
4448 a server, and when the protocol involves very long sessions with long idle
4449 periods (eg: remote desktops), there is a risk that one of the intermediate
4450 components decides to expire a session which has remained idle for too long.
4451
4452 Enabling socket-level TCP keep-alives makes the system regularly send packets
4453 to the other end of the connection, leaving it active. The delay between
4454 keep-alive probes is controlled by the system only and depends both on the
4455 operating system and its tuning parameters.
4456
4457 It is important to understand that keep-alive packets are neither emitted nor
4458 received at the application level. It is only the network stacks which sees
4459 them. For this reason, even if one side of the proxy already uses keep-alives
4460 to maintain its connection alive, those keep-alive packets will not be
4461 forwarded to the other side of the proxy.
4462
4463 Please note that this has nothing to do with HTTP keep-alive.
4464
4465 Using option "srvtcpka" enables the emission of TCP keep-alive probes on the
4466 server side of a connection, which should help when session expirations are
4467 noticed between HAProxy and a server.
4468
4469 If this option has been enabled in a "defaults" section, it can be disabled
4470 in a specific instance by prepending the "no" keyword before it.
4471
4472 See also : "option clitcpka", "option tcpka"
4473
4474
Willy Tarreaua453bdd2008-01-08 19:50:52 +01004475option ssl-hello-chk
4476 Use SSLv3 client hello health checks for server testing
4477 May be used in sections : defaults | frontend | listen | backend
4478 yes | no | yes | yes
4479 Arguments : none
4480
4481 When some SSL-based protocols are relayed in TCP mode through HAProxy, it is
4482 possible to test that the server correctly talks SSL instead of just testing
4483 that it accepts the TCP connection. When "option ssl-hello-chk" is set, pure
4484 SSLv3 client hello messages are sent once the connection is established to
4485 the server, and the response is analyzed to find an SSL server hello message.
4486 The server is considered valid only when the response contains this server
4487 hello message.
4488
4489 All servers tested till there correctly reply to SSLv3 client hello messages,
4490 and most servers tested do not even log the requests containing only hello
4491 messages, which is appreciable.
4492
Willy Tarreau763a95b2012-10-04 23:15:39 +02004493 Note that this check works even when SSL support was not built into haproxy
4494 because it forges the SSL message. When SSL support is available, it is best
4495 to use native SSL health checks instead of this one.
Willy Tarreaua453bdd2008-01-08 19:50:52 +01004496
Willy Tarreau763a95b2012-10-04 23:15:39 +02004497 See also: "option httpchk", "check-ssl"
4498
Willy Tarreaua453bdd2008-01-08 19:50:52 +01004499
Willy Tarreau9ea05a72009-06-14 12:07:01 +02004500option tcp-smart-accept
4501no option tcp-smart-accept
4502 Enable or disable the saving of one ACK packet during the accept sequence
4503 May be used in sections : defaults | frontend | listen | backend
4504 yes | yes | yes | no
4505 Arguments : none
4506
4507 When an HTTP connection request comes in, the system acknowledges it on
4508 behalf of HAProxy, then the client immediately sends its request, and the
4509 system acknowledges it too while it is notifying HAProxy about the new
4510 connection. HAProxy then reads the request and responds. This means that we
4511 have one TCP ACK sent by the system for nothing, because the request could
4512 very well be acknowledged by HAProxy when it sends its response.
4513
4514 For this reason, in HTTP mode, HAProxy automatically asks the system to avoid
4515 sending this useless ACK on platforms which support it (currently at least
4516 Linux). It must not cause any problem, because the system will send it anyway
4517 after 40 ms if the response takes more time than expected to come.
4518
4519 During complex network debugging sessions, it may be desirable to disable
4520 this optimization because delayed ACKs can make troubleshooting more complex
4521 when trying to identify where packets are delayed. It is then possible to
4522 fall back to normal behaviour by specifying "no option tcp-smart-accept".
4523
4524 It is also possible to force it for non-HTTP proxies by simply specifying
4525 "option tcp-smart-accept". For instance, it can make sense with some services
4526 such as SMTP where the server speaks first.
4527
4528 It is recommended to avoid forcing this option in a defaults section. In case
4529 of doubt, consider setting it back to automatic values by prepending the
4530 "default" keyword before it, or disabling it using the "no" keyword.
4531
Willy Tarreaud88edf22009-06-14 15:48:17 +02004532 See also : "option tcp-smart-connect"
4533
4534
4535option tcp-smart-connect
4536no option tcp-smart-connect
4537 Enable or disable the saving of one ACK packet during the connect sequence
4538 May be used in sections : defaults | frontend | listen | backend
4539 yes | no | yes | yes
4540 Arguments : none
4541
4542 On certain systems (at least Linux), HAProxy can ask the kernel not to
4543 immediately send an empty ACK upon a connection request, but to directly
4544 send the buffer request instead. This saves one packet on the network and
4545 thus boosts performance. It can also be useful for some servers, because they
4546 immediately get the request along with the incoming connection.
4547
4548 This feature is enabled when "option tcp-smart-connect" is set in a backend.
4549 It is not enabled by default because it makes network troubleshooting more
4550 complex.
4551
4552 It only makes sense to enable it with protocols where the client speaks first
4553 such as HTTP. In other situations, if there is no data to send in place of
4554 the ACK, a normal ACK is sent.
4555
4556 If this option has been enabled in a "defaults" section, it can be disabled
4557 in a specific instance by prepending the "no" keyword before it.
4558
4559 See also : "option tcp-smart-accept"
4560
Willy Tarreau9ea05a72009-06-14 12:07:01 +02004561
Willy Tarreaubf1f8162007-12-28 17:42:56 +01004562option tcpka
4563 Enable or disable the sending of TCP keepalive packets on both sides
4564 May be used in sections : defaults | frontend | listen | backend
4565 yes | yes | yes | yes
4566 Arguments : none
4567
4568 When there is a firewall or any session-aware component between a client and
4569 a server, and when the protocol involves very long sessions with long idle
4570 periods (eg: remote desktops), there is a risk that one of the intermediate
4571 components decides to expire a session which has remained idle for too long.
4572
4573 Enabling socket-level TCP keep-alives makes the system regularly send packets
4574 to the other end of the connection, leaving it active. The delay between
4575 keep-alive probes is controlled by the system only and depends both on the
4576 operating system and its tuning parameters.
4577
4578 It is important to understand that keep-alive packets are neither emitted nor
4579 received at the application level. It is only the network stacks which sees
4580 them. For this reason, even if one side of the proxy already uses keep-alives
4581 to maintain its connection alive, those keep-alive packets will not be
4582 forwarded to the other side of the proxy.
4583
4584 Please note that this has nothing to do with HTTP keep-alive.
4585
4586 Using option "tcpka" enables the emission of TCP keep-alive probes on both
4587 the client and server sides of a connection. Note that this is meaningful
4588 only in "defaults" or "listen" sections. If this option is used in a
4589 frontend, only the client side will get keep-alives, and if this option is
4590 used in a backend, only the server side will get keep-alives. For this
4591 reason, it is strongly recommended to explicitly use "option clitcpka" and
4592 "option srvtcpka" when the configuration is split between frontends and
4593 backends.
4594
4595 See also : "option clitcpka", "option srvtcpka"
4596
Willy Tarreau844e3c52008-01-11 16:28:18 +01004597
4598option tcplog
4599 Enable advanced logging of TCP connections with session state and timers
4600 May be used in sections : defaults | frontend | listen | backend
4601 yes | yes | yes | yes
4602 Arguments : none
4603
4604 By default, the log output format is very poor, as it only contains the
4605 source and destination addresses, and the instance name. By specifying
4606 "option tcplog", each log line turns into a much richer format including, but
4607 not limited to, the connection timers, the session status, the connections
4608 numbers, the frontend, backend and server name, and of course the source
4609 address and ports. This option is useful for pure TCP proxies in order to
4610 find which of the client or server disconnects or times out. For normal HTTP
4611 proxies, it's better to use "option httplog" which is even more complete.
4612
4613 This option may be set either in the frontend or the backend.
4614
Willy Tarreauc57f0e22009-05-10 13:12:33 +02004615 See also : "option httplog", and section 8 about logging.
Willy Tarreau844e3c52008-01-11 16:28:18 +01004616
4617
Willy Tarreau844e3c52008-01-11 16:28:18 +01004618option transparent
4619no option transparent
4620 Enable client-side transparent proxying
4621 May be used in sections : defaults | frontend | listen | backend
Willy Tarreau4b1f8592008-12-23 23:13:55 +01004622 yes | no | yes | yes
Willy Tarreau844e3c52008-01-11 16:28:18 +01004623 Arguments : none
4624
4625 This option was introduced in order to provide layer 7 persistence to layer 3
4626 load balancers. The idea is to use the OS's ability to redirect an incoming
4627 connection for a remote address to a local process (here HAProxy), and let
4628 this process know what address was initially requested. When this option is
4629 used, sessions without cookies will be forwarded to the original destination
4630 IP address of the incoming request (which should match that of another
4631 equipment), while requests with cookies will still be forwarded to the
4632 appropriate server.
4633
4634 Note that contrary to a common belief, this option does NOT make HAProxy
4635 present the client's IP to the server when establishing the connection.
4636
Willy Tarreaua1146052011-03-01 09:51:54 +01004637 See also: the "usesrc" argument of the "source" keyword, and the
Willy Tarreaueabeafa2008-01-16 16:17:06 +01004638 "transparent" option of the "bind" keyword.
Willy Tarreau844e3c52008-01-11 16:28:18 +01004639
Willy Tarreaubf1f8162007-12-28 17:42:56 +01004640
Emeric Brun647caf12009-06-30 17:57:00 +02004641persist rdp-cookie
Hervé COMMOWICKa3eb39c2011-08-05 18:48:51 +02004642persist rdp-cookie(<name>)
Emeric Brun647caf12009-06-30 17:57:00 +02004643 Enable RDP cookie-based persistence
4644 May be used in sections : defaults | frontend | listen | backend
4645 yes | no | yes | yes
4646 Arguments :
4647 <name> is the optional name of the RDP cookie to check. If omitted, the
Willy Tarreau61e28f22010-05-16 22:31:05 +02004648 default cookie name "msts" will be used. There currently is no
4649 valid reason to change this name.
Emeric Brun647caf12009-06-30 17:57:00 +02004650
4651 This statement enables persistence based on an RDP cookie. The RDP cookie
4652 contains all information required to find the server in the list of known
4653 servers. So when this option is set in the backend, the request is analysed
4654 and if an RDP cookie is found, it is decoded. If it matches a known server
4655 which is still UP (or if "option persist" is set), then the connection is
4656 forwarded to this server.
4657
4658 Note that this only makes sense in a TCP backend, but for this to work, the
4659 frontend must have waited long enough to ensure that an RDP cookie is present
4660 in the request buffer. This is the same requirement as with the "rdp-cookie"
Krzysztof Piotr Oledzkif8645332009-12-13 21:55:50 +01004661 load-balancing method. Thus it is highly recommended to put all statements in
Emeric Brun647caf12009-06-30 17:57:00 +02004662 a single "listen" section.
4663
Willy Tarreau61e28f22010-05-16 22:31:05 +02004664 Also, it is important to understand that the terminal server will emit this
4665 RDP cookie only if it is configured for "token redirection mode", which means
4666 that the "IP address redirection" option is disabled.
4667
Emeric Brun647caf12009-06-30 17:57:00 +02004668 Example :
4669 listen tse-farm
4670 bind :3389
4671 # wait up to 5s for an RDP cookie in the request
4672 tcp-request inspect-delay 5s
4673 tcp-request content accept if RDP_COOKIE
4674 # apply RDP cookie persistence
4675 persist rdp-cookie
4676 # if server is unknown, let's balance on the same cookie.
Cyril Bontédc4d9032012-04-08 21:57:39 +02004677 # alternatively, "balance leastconn" may be useful too.
Emeric Brun647caf12009-06-30 17:57:00 +02004678 balance rdp-cookie
4679 server srv1 1.1.1.1:3389
4680 server srv2 1.1.1.2:3389
4681
Simon Hormanab814e02011-06-24 14:50:20 +09004682 See also : "balance rdp-cookie", "tcp-request", the "req_rdp_cookie" ACL and
4683 the rdp_cookie pattern fetch function.
Emeric Brun647caf12009-06-30 17:57:00 +02004684
4685
Willy Tarreau3a7d2072009-03-05 23:48:25 +01004686rate-limit sessions <rate>
4687 Set a limit on the number of new sessions accepted per second on a frontend
4688 May be used in sections : defaults | frontend | listen | backend
4689 yes | yes | yes | no
4690 Arguments :
4691 <rate> The <rate> parameter is an integer designating the maximum number
4692 of new sessions per second to accept on the frontend.
4693
4694 When the frontend reaches the specified number of new sessions per second, it
4695 stops accepting new connections until the rate drops below the limit again.
4696 During this time, the pending sessions will be kept in the socket's backlog
4697 (in system buffers) and haproxy will not even be aware that sessions are
4698 pending. When applying very low limit on a highly loaded service, it may make
4699 sense to increase the socket's backlog using the "backlog" keyword.
4700
4701 This feature is particularly efficient at blocking connection-based attacks
4702 or service abuse on fragile servers. Since the session rate is measured every
4703 millisecond, it is extremely accurate. Also, the limit applies immediately,
4704 no delay is needed at all to detect the threshold.
4705
4706 Example : limit the connection rate on SMTP to 10 per second max
4707 listen smtp
4708 mode tcp
4709 bind :25
4710 rate-limit sessions 10
4711 server 127.0.0.1:1025
4712
Willy Tarreaua17c2d92011-07-25 08:16:20 +02004713 Note : when the maximum rate is reached, the frontend's status is not changed
4714 but its sockets appear as "WAITING" in the statistics if the
4715 "socket-stats" option is enabled.
Willy Tarreau3a7d2072009-03-05 23:48:25 +01004716
4717 See also : the "backlog" keyword and the "fe_sess_rate" ACL criterion.
4718
4719
Willy Tarreau2e1dca82012-09-12 08:43:15 +02004720redirect location <loc> [code <code>] <option> [{if | unless} <condition>]
4721redirect prefix <pfx> [code <code>] <option> [{if | unless} <condition>]
4722redirect scheme <sch> [code <code>] <option> [{if | unless} <condition>]
Willy Tarreaub463dfb2008-06-07 23:08:56 +02004723 Return an HTTP redirection if/unless a condition is matched
4724 May be used in sections : defaults | frontend | listen | backend
4725 no | yes | yes | yes
4726
4727 If/unless the condition is matched, the HTTP request will lead to a redirect
Willy Tarreauf285f542010-01-03 20:03:03 +01004728 response. If no condition is specified, the redirect applies unconditionally.
Willy Tarreaub463dfb2008-06-07 23:08:56 +02004729
Willy Tarreau0140f252008-11-19 21:07:09 +01004730 Arguments :
Willy Tarreau2e1dca82012-09-12 08:43:15 +02004731 <loc> With "redirect location", the exact value in <loc> is placed into
4732 the HTTP "Location" header.
4733
4734 <pfx> With "redirect prefix", the "Location" header is built from the
4735 concatenation of <pfx> and the complete URI path, including the
4736 query string, unless the "drop-query" option is specified (see
4737 below). As a special case, if <pfx> equals exactly "/", then
4738 nothing is inserted before the original URI. It allows one to
4739 redirect to the same URL (for instance, to insert a cookie).
4740
4741 <sch> With "redirect scheme", then the "Location" header is built by
4742 concatenating <sch> with "://" then the first occurrence of the
4743 "Host" header, and then the URI path, including the query string
4744 unless the "drop-query" option is specified (see below). If no
4745 path is found or if the path is "*", then "/" is used instead. If
4746 no "Host" header is found, then an empty host component will be
4747 returned, which most recent browsers interprete as redirecting to
4748 the same host. This directive is mostly used to redirect HTTP to
4749 HTTPS.
Willy Tarreau0140f252008-11-19 21:07:09 +01004750
4751 <code> The code is optional. It indicates which type of HTTP redirection
Willy Tarreaub67fdc42013-03-29 19:28:11 +01004752 is desired. Only codes 301, 302, 303, 307 and 308 are supported,
4753 with 302 used by default if no code is specified. 301 means
4754 "Moved permanently", and a browser may cache the Location. 302
4755 means "Moved permanently" and means that the browser should not
4756 cache the redirection. 303 is equivalent to 302 except that the
4757 browser will fetch the location with a GET method. 307 is just
4758 like 302 but makes it clear that the same method must be reused.
4759 Likewise, 308 replaces 301 if the same method must be used.
Willy Tarreau0140f252008-11-19 21:07:09 +01004760
4761 <option> There are several options which can be specified to adjust the
4762 expected behaviour of a redirection :
4763
4764 - "drop-query"
4765 When this keyword is used in a prefix-based redirection, then the
4766 location will be set without any possible query-string, which is useful
4767 for directing users to a non-secure page for instance. It has no effect
4768 with a location-type redirect.
4769
Willy Tarreau81e3b4f2010-01-10 00:42:19 +01004770 - "append-slash"
4771 This keyword may be used in conjunction with "drop-query" to redirect
4772 users who use a URL not ending with a '/' to the same one with the '/'.
4773 It can be useful to ensure that search engines will only see one URL.
4774 For this, a return code 301 is preferred.
4775
Willy Tarreau0140f252008-11-19 21:07:09 +01004776 - "set-cookie NAME[=value]"
4777 A "Set-Cookie" header will be added with NAME (and optionally "=value")
4778 to the response. This is sometimes used to indicate that a user has
4779 been seen, for instance to protect against some types of DoS. No other
4780 cookie option is added, so the cookie will be a session cookie. Note
4781 that for a browser, a sole cookie name without an equal sign is
4782 different from a cookie with an equal sign.
4783
4784 - "clear-cookie NAME[=]"
4785 A "Set-Cookie" header will be added with NAME (and optionally "="), but
4786 with the "Max-Age" attribute set to zero. This will tell the browser to
4787 delete this cookie. It is useful for instance on logout pages. It is
4788 important to note that clearing the cookie "NAME" will not remove a
4789 cookie set with "NAME=value". You have to clear the cookie "NAME=" for
4790 that, because the browser makes the difference.
Willy Tarreaub463dfb2008-06-07 23:08:56 +02004791
4792 Example: move the login URL only to HTTPS.
4793 acl clear dst_port 80
4794 acl secure dst_port 8080
4795 acl login_page url_beg /login
Willy Tarreau0140f252008-11-19 21:07:09 +01004796 acl logout url_beg /logout
Willy Tarreau79da4692008-11-19 20:03:04 +01004797 acl uid_given url_reg /login?userid=[^&]+
Willy Tarreau0140f252008-11-19 21:07:09 +01004798 acl cookie_set hdr_sub(cookie) SEEN=1
4799
4800 redirect prefix https://mysite.com set-cookie SEEN=1 if !cookie_set
Willy Tarreau79da4692008-11-19 20:03:04 +01004801 redirect prefix https://mysite.com if login_page !secure
4802 redirect prefix http://mysite.com drop-query if login_page !uid_given
4803 redirect location http://mysite.com/ if !login_page secure
Willy Tarreau0140f252008-11-19 21:07:09 +01004804 redirect location / clear-cookie USERID= if logout
Willy Tarreaub463dfb2008-06-07 23:08:56 +02004805
Willy Tarreau81e3b4f2010-01-10 00:42:19 +01004806 Example: send redirects for request for articles without a '/'.
4807 acl missing_slash path_reg ^/article/[^/]*$
4808 redirect code 301 prefix / drop-query append-slash if missing_slash
4809
Willy Tarreau2e1dca82012-09-12 08:43:15 +02004810 Example: redirect all HTTP traffic to HTTPS when SSL is handled by haproxy.
David BERARDe7153042012-11-03 00:11:31 +01004811 redirect scheme https if !{ ssl_fc }
Willy Tarreau2e1dca82012-09-12 08:43:15 +02004812
Willy Tarreauc57f0e22009-05-10 13:12:33 +02004813 See section 7 about ACL usage.
Willy Tarreaub463dfb2008-06-07 23:08:56 +02004814
4815
Krzysztof Piotr Oledzki25b501a2008-01-06 16:36:16 +01004816redisp (deprecated)
4817redispatch (deprecated)
4818 Enable or disable session redistribution in case of connection failure
4819 May be used in sections: defaults | frontend | listen | backend
4820 yes | no | yes | yes
Willy Tarreaueabeafa2008-01-16 16:17:06 +01004821 Arguments : none
Krzysztof Piotr Oledzki25b501a2008-01-06 16:36:16 +01004822
4823 In HTTP mode, if a server designated by a cookie is down, clients may
4824 definitely stick to it because they cannot flush the cookie, so they will not
4825 be able to access the service anymore.
4826
4827 Specifying "redispatch" will allow the proxy to break their persistence and
4828 redistribute them to a working server.
4829
4830 It also allows to retry last connection to another server in case of multiple
4831 connection failures. Of course, it requires having "retries" set to a nonzero
4832 value.
Willy Tarreaud72758d2010-01-12 10:42:19 +01004833
Krzysztof Piotr Oledzki25b501a2008-01-06 16:36:16 +01004834 This form is deprecated, do not use it in any new configuration, use the new
4835 "option redispatch" instead.
4836
4837 See also : "option redispatch"
4838
Willy Tarreaueabeafa2008-01-16 16:17:06 +01004839
Willy Tarreau8abd4cd2010-01-31 14:30:44 +01004840reqadd <string> [{if | unless} <cond>]
Willy Tarreau303c0352008-01-17 19:01:39 +01004841 Add a header at the end of the HTTP request
4842 May be used in sections : defaults | frontend | listen | backend
4843 no | yes | yes | yes
4844 Arguments :
4845 <string> is the complete line to be added. Any space or known delimiter
4846 must be escaped using a backslash ('\'). Please refer to section
Willy Tarreauc57f0e22009-05-10 13:12:33 +02004847 6 about HTTP header manipulation for more information.
Willy Tarreau303c0352008-01-17 19:01:39 +01004848
Willy Tarreau8abd4cd2010-01-31 14:30:44 +01004849 <cond> is an optional matching condition built from ACLs. It makes it
4850 possible to ignore this rule when other conditions are not met.
4851
Willy Tarreau303c0352008-01-17 19:01:39 +01004852 A new line consisting in <string> followed by a line feed will be added after
4853 the last header of an HTTP request.
4854
4855 Header transformations only apply to traffic which passes through HAProxy,
4856 and not to traffic generated by HAProxy, such as health-checks or error
4857 responses.
4858
Willy Tarreau8abd4cd2010-01-31 14:30:44 +01004859 Example : add "X-Proto: SSL" to requests coming via port 81
4860 acl is-ssl dst_port 81
4861 reqadd X-Proto:\ SSL if is-ssl
4862
4863 See also: "rspadd", section 6 about HTTP header manipulation, and section 7
4864 about ACLs.
Willy Tarreau303c0352008-01-17 19:01:39 +01004865
4866
Willy Tarreau5321c422010-01-28 20:35:13 +01004867reqallow <search> [{if | unless} <cond>]
4868reqiallow <search> [{if | unless} <cond>] (ignore case)
Willy Tarreau303c0352008-01-17 19:01:39 +01004869 Definitely allow an HTTP request if a line matches a regular expression
4870 May be used in sections : defaults | frontend | listen | backend
4871 no | yes | yes | yes
4872 Arguments :
4873 <search> is the regular expression applied to HTTP headers and to the
4874 request line. This is an extended regular expression. Parenthesis
4875 grouping is supported and no preliminary backslash is required.
4876 Any space or known delimiter must be escaped using a backslash
4877 ('\'). The pattern applies to a full line at a time. The
4878 "reqallow" keyword strictly matches case while "reqiallow"
4879 ignores case.
4880
Willy Tarreau5321c422010-01-28 20:35:13 +01004881 <cond> is an optional matching condition built from ACLs. It makes it
4882 possible to ignore this rule when other conditions are not met.
4883
Willy Tarreau303c0352008-01-17 19:01:39 +01004884 A request containing any line which matches extended regular expression
4885 <search> will mark the request as allowed, even if any later test would
4886 result in a deny. The test applies both to the request line and to request
4887 headers. Keep in mind that URLs in request line are case-sensitive while
Willy Tarreaud72758d2010-01-12 10:42:19 +01004888 header names are not.
Willy Tarreau303c0352008-01-17 19:01:39 +01004889
4890 It is easier, faster and more powerful to use ACLs to write access policies.
4891 Reqdeny, reqallow and reqpass should be avoided in new designs.
4892
4893 Example :
4894 # allow www.* but refuse *.local
4895 reqiallow ^Host:\ www\.
4896 reqideny ^Host:\ .*\.local
4897
Willy Tarreau5321c422010-01-28 20:35:13 +01004898 See also: "reqdeny", "block", section 6 about HTTP header manipulation, and
4899 section 7 about ACLs.
Willy Tarreau303c0352008-01-17 19:01:39 +01004900
4901
Willy Tarreau5321c422010-01-28 20:35:13 +01004902reqdel <search> [{if | unless} <cond>]
4903reqidel <search> [{if | unless} <cond>] (ignore case)
Willy Tarreau303c0352008-01-17 19:01:39 +01004904 Delete all headers matching a regular expression in an HTTP request
4905 May be used in sections : defaults | frontend | listen | backend
4906 no | yes | yes | yes
4907 Arguments :
4908 <search> is the regular expression applied to HTTP headers and to the
4909 request line. This is an extended regular expression. Parenthesis
4910 grouping is supported and no preliminary backslash is required.
4911 Any space or known delimiter must be escaped using a backslash
4912 ('\'). The pattern applies to a full line at a time. The "reqdel"
4913 keyword strictly matches case while "reqidel" ignores case.
4914
Willy Tarreau5321c422010-01-28 20:35:13 +01004915 <cond> is an optional matching condition built from ACLs. It makes it
4916 possible to ignore this rule when other conditions are not met.
4917
Willy Tarreau303c0352008-01-17 19:01:39 +01004918 Any header line matching extended regular expression <search> in the request
4919 will be completely deleted. Most common use of this is to remove unwanted
4920 and/or dangerous headers or cookies from a request before passing it to the
4921 next servers.
4922
4923 Header transformations only apply to traffic which passes through HAProxy,
4924 and not to traffic generated by HAProxy, such as health-checks or error
4925 responses. Keep in mind that header names are not case-sensitive.
4926
4927 Example :
4928 # remove X-Forwarded-For header and SERVER cookie
4929 reqidel ^X-Forwarded-For:.*
4930 reqidel ^Cookie:.*SERVER=
4931
Willy Tarreau5321c422010-01-28 20:35:13 +01004932 See also: "reqadd", "reqrep", "rspdel", section 6 about HTTP header
4933 manipulation, and section 7 about ACLs.
Willy Tarreau303c0352008-01-17 19:01:39 +01004934
4935
Willy Tarreau5321c422010-01-28 20:35:13 +01004936reqdeny <search> [{if | unless} <cond>]
4937reqideny <search> [{if | unless} <cond>] (ignore case)
Willy Tarreau303c0352008-01-17 19:01:39 +01004938 Deny an HTTP request if a line matches a regular expression
4939 May be used in sections : defaults | frontend | listen | backend
4940 no | yes | yes | yes
4941 Arguments :
4942 <search> is the regular expression applied to HTTP headers and to the
4943 request line. This is an extended regular expression. Parenthesis
4944 grouping is supported and no preliminary backslash is required.
4945 Any space or known delimiter must be escaped using a backslash
4946 ('\'). The pattern applies to a full line at a time. The
4947 "reqdeny" keyword strictly matches case while "reqideny" ignores
4948 case.
4949
Willy Tarreau5321c422010-01-28 20:35:13 +01004950 <cond> is an optional matching condition built from ACLs. It makes it
4951 possible to ignore this rule when other conditions are not met.
4952
Willy Tarreau303c0352008-01-17 19:01:39 +01004953 A request containing any line which matches extended regular expression
4954 <search> will mark the request as denied, even if any later test would
4955 result in an allow. The test applies both to the request line and to request
4956 headers. Keep in mind that URLs in request line are case-sensitive while
Willy Tarreaud72758d2010-01-12 10:42:19 +01004957 header names are not.
Willy Tarreau303c0352008-01-17 19:01:39 +01004958
Willy Tarreauced27012008-01-17 20:35:34 +01004959 A denied request will generate an "HTTP 403 forbidden" response once the
Willy Tarreaud2a4aa22008-01-31 15:28:22 +01004960 complete request has been parsed. This is consistent with what is practiced
Willy Tarreaud72758d2010-01-12 10:42:19 +01004961 using ACLs.
Willy Tarreauced27012008-01-17 20:35:34 +01004962
Willy Tarreau303c0352008-01-17 19:01:39 +01004963 It is easier, faster and more powerful to use ACLs to write access policies.
4964 Reqdeny, reqallow and reqpass should be avoided in new designs.
4965
4966 Example :
4967 # refuse *.local, then allow www.*
4968 reqideny ^Host:\ .*\.local
4969 reqiallow ^Host:\ www\.
4970
Willy Tarreau5321c422010-01-28 20:35:13 +01004971 See also: "reqallow", "rspdeny", "block", section 6 about HTTP header
4972 manipulation, and section 7 about ACLs.
Willy Tarreau303c0352008-01-17 19:01:39 +01004973
4974
Willy Tarreau5321c422010-01-28 20:35:13 +01004975reqpass <search> [{if | unless} <cond>]
4976reqipass <search> [{if | unless} <cond>] (ignore case)
Willy Tarreau303c0352008-01-17 19:01:39 +01004977 Ignore any HTTP request line matching a regular expression in next rules
4978 May be used in sections : defaults | frontend | listen | backend
4979 no | yes | yes | yes
4980 Arguments :
4981 <search> is the regular expression applied to HTTP headers and to the
4982 request line. This is an extended regular expression. Parenthesis
4983 grouping is supported and no preliminary backslash is required.
4984 Any space or known delimiter must be escaped using a backslash
4985 ('\'). The pattern applies to a full line at a time. The
4986 "reqpass" keyword strictly matches case while "reqipass" ignores
4987 case.
4988
Willy Tarreau5321c422010-01-28 20:35:13 +01004989 <cond> is an optional matching condition built from ACLs. It makes it
4990 possible to ignore this rule when other conditions are not met.
4991
Willy Tarreau303c0352008-01-17 19:01:39 +01004992 A request containing any line which matches extended regular expression
4993 <search> will skip next rules, without assigning any deny or allow verdict.
4994 The test applies both to the request line and to request headers. Keep in
4995 mind that URLs in request line are case-sensitive while header names are not.
4996
4997 It is easier, faster and more powerful to use ACLs to write access policies.
4998 Reqdeny, reqallow and reqpass should be avoided in new designs.
4999
5000 Example :
5001 # refuse *.local, then allow www.*, but ignore "www.private.local"
5002 reqipass ^Host:\ www.private\.local
5003 reqideny ^Host:\ .*\.local
5004 reqiallow ^Host:\ www\.
5005
Willy Tarreau5321c422010-01-28 20:35:13 +01005006 See also: "reqallow", "reqdeny", "block", section 6 about HTTP header
5007 manipulation, and section 7 about ACLs.
Willy Tarreau303c0352008-01-17 19:01:39 +01005008
5009
Willy Tarreau5321c422010-01-28 20:35:13 +01005010reqrep <search> <string> [{if | unless} <cond>]
5011reqirep <search> <string> [{if | unless} <cond>] (ignore case)
Willy Tarreau303c0352008-01-17 19:01:39 +01005012 Replace a regular expression with a string in an HTTP request line
5013 May be used in sections : defaults | frontend | listen | backend
5014 no | yes | yes | yes
5015 Arguments :
5016 <search> is the regular expression applied to HTTP headers and to the
5017 request line. This is an extended regular expression. Parenthesis
5018 grouping is supported and no preliminary backslash is required.
5019 Any space or known delimiter must be escaped using a backslash
5020 ('\'). The pattern applies to a full line at a time. The "reqrep"
5021 keyword strictly matches case while "reqirep" ignores case.
5022
5023 <string> is the complete line to be added. Any space or known delimiter
5024 must be escaped using a backslash ('\'). References to matched
5025 pattern groups are possible using the common \N form, with N
5026 being a single digit between 0 and 9. Please refer to section
Willy Tarreauc57f0e22009-05-10 13:12:33 +02005027 6 about HTTP header manipulation for more information.
Willy Tarreau303c0352008-01-17 19:01:39 +01005028
Willy Tarreau5321c422010-01-28 20:35:13 +01005029 <cond> is an optional matching condition built from ACLs. It makes it
5030 possible to ignore this rule when other conditions are not met.
5031
Willy Tarreau303c0352008-01-17 19:01:39 +01005032 Any line matching extended regular expression <search> in the request (both
5033 the request line and header lines) will be completely replaced with <string>.
5034 Most common use of this is to rewrite URLs or domain names in "Host" headers.
5035
5036 Header transformations only apply to traffic which passes through HAProxy,
5037 and not to traffic generated by HAProxy, such as health-checks or error
5038 responses. Note that for increased readability, it is suggested to add enough
5039 spaces between the request and the response. Keep in mind that URLs in
5040 request line are case-sensitive while header names are not.
5041
5042 Example :
5043 # replace "/static/" with "/" at the beginning of any request path.
Dmitry Sivachenko7823de32012-05-16 14:00:26 +04005044 reqrep ^([^\ :]*)\ /static/(.*) \1\ /\2
Willy Tarreau303c0352008-01-17 19:01:39 +01005045 # replace "www.mydomain.com" with "www" in the host name.
5046 reqirep ^Host:\ www.mydomain.com Host:\ www
5047
Dmitry Sivachenkof6f4f7b2012-10-21 18:10:25 +04005048 See also: "reqadd", "reqdel", "rsprep", "tune.bufsize", section 6 about
5049 HTTP header manipulation, and section 7 about ACLs.
Willy Tarreau303c0352008-01-17 19:01:39 +01005050
5051
Willy Tarreau5321c422010-01-28 20:35:13 +01005052reqtarpit <search> [{if | unless} <cond>]
5053reqitarpit <search> [{if | unless} <cond>] (ignore case)
Willy Tarreau303c0352008-01-17 19:01:39 +01005054 Tarpit an HTTP request containing a line matching a regular expression
5055 May be used in sections : defaults | frontend | listen | backend
5056 no | yes | yes | yes
5057 Arguments :
5058 <search> is the regular expression applied to HTTP headers and to the
5059 request line. This is an extended regular expression. Parenthesis
5060 grouping is supported and no preliminary backslash is required.
5061 Any space or known delimiter must be escaped using a backslash
5062 ('\'). The pattern applies to a full line at a time. The
5063 "reqtarpit" keyword strictly matches case while "reqitarpit"
5064 ignores case.
5065
Willy Tarreau5321c422010-01-28 20:35:13 +01005066 <cond> is an optional matching condition built from ACLs. It makes it
5067 possible to ignore this rule when other conditions are not met.
5068
Willy Tarreau303c0352008-01-17 19:01:39 +01005069 A request containing any line which matches extended regular expression
5070 <search> will be tarpitted, which means that it will connect to nowhere, will
Willy Tarreauced27012008-01-17 20:35:34 +01005071 be kept open for a pre-defined time, then will return an HTTP error 500 so
5072 that the attacker does not suspect it has been tarpitted. The status 500 will
5073 be reported in the logs, but the completion flags will indicate "PT". The
Willy Tarreau303c0352008-01-17 19:01:39 +01005074 delay is defined by "timeout tarpit", or "timeout connect" if the former is
5075 not set.
5076
5077 The goal of the tarpit is to slow down robots attacking servers with
5078 identifiable requests. Many robots limit their outgoing number of connections
5079 and stay connected waiting for a reply which can take several minutes to
5080 come. Depending on the environment and attack, it may be particularly
5081 efficient at reducing the load on the network and firewalls.
5082
Willy Tarreau5321c422010-01-28 20:35:13 +01005083 Examples :
Willy Tarreau303c0352008-01-17 19:01:39 +01005084 # ignore user-agents reporting any flavour of "Mozilla" or "MSIE", but
5085 # block all others.
5086 reqipass ^User-Agent:\.*(Mozilla|MSIE)
5087 reqitarpit ^User-Agent:
5088
Willy Tarreau5321c422010-01-28 20:35:13 +01005089 # block bad guys
5090 acl badguys src 10.1.0.3 172.16.13.20/28
5091 reqitarpit . if badguys
5092
5093 See also: "reqallow", "reqdeny", "reqpass", section 6 about HTTP header
5094 manipulation, and section 7 about ACLs.
Willy Tarreau303c0352008-01-17 19:01:39 +01005095
5096
Willy Tarreaue5c5ce92008-06-20 17:27:19 +02005097retries <value>
5098 Set the number of retries to perform on a server after a connection failure
5099 May be used in sections: defaults | frontend | listen | backend
5100 yes | no | yes | yes
5101 Arguments :
5102 <value> is the number of times a connection attempt should be retried on
5103 a server when a connection either is refused or times out. The
5104 default value is 3.
5105
5106 It is important to understand that this value applies to the number of
5107 connection attempts, not full requests. When a connection has effectively
5108 been established to a server, there will be no more retry.
5109
5110 In order to avoid immediate reconnections to a server which is restarting,
5111 a turn-around timer of 1 second is applied before a retry occurs.
5112
5113 When "option redispatch" is set, the last retry may be performed on another
5114 server even if a cookie references a different server.
5115
5116 See also : "option redispatch"
5117
5118
Willy Tarreaufdb563c2010-01-31 15:43:27 +01005119rspadd <string> [{if | unless} <cond>]
Willy Tarreau303c0352008-01-17 19:01:39 +01005120 Add a header at the end of the HTTP response
5121 May be used in sections : defaults | frontend | listen | backend
5122 no | yes | yes | yes
5123 Arguments :
5124 <string> is the complete line to be added. Any space or known delimiter
5125 must be escaped using a backslash ('\'). Please refer to section
Willy Tarreauc57f0e22009-05-10 13:12:33 +02005126 6 about HTTP header manipulation for more information.
Willy Tarreau303c0352008-01-17 19:01:39 +01005127
Willy Tarreaufdb563c2010-01-31 15:43:27 +01005128 <cond> is an optional matching condition built from ACLs. It makes it
5129 possible to ignore this rule when other conditions are not met.
5130
Willy Tarreau303c0352008-01-17 19:01:39 +01005131 A new line consisting in <string> followed by a line feed will be added after
5132 the last header of an HTTP response.
5133
5134 Header transformations only apply to traffic which passes through HAProxy,
5135 and not to traffic generated by HAProxy, such as health-checks or error
5136 responses.
5137
Willy Tarreaufdb563c2010-01-31 15:43:27 +01005138 See also: "reqadd", section 6 about HTTP header manipulation, and section 7
5139 about ACLs.
Willy Tarreau303c0352008-01-17 19:01:39 +01005140
5141
Willy Tarreaufdb563c2010-01-31 15:43:27 +01005142rspdel <search> [{if | unless} <cond>]
5143rspidel <search> [{if | unless} <cond>] (ignore case)
Willy Tarreau303c0352008-01-17 19:01:39 +01005144 Delete all headers matching a regular expression in an HTTP response
5145 May be used in sections : defaults | frontend | listen | backend
5146 no | yes | yes | yes
5147 Arguments :
5148 <search> is the regular expression applied to HTTP headers and to the
5149 response line. This is an extended regular expression, so
5150 parenthesis grouping is supported and no preliminary backslash
5151 is required. Any space or known delimiter must be escaped using
5152 a backslash ('\'). The pattern applies to a full line at a time.
5153 The "rspdel" keyword strictly matches case while "rspidel"
5154 ignores case.
5155
Willy Tarreaufdb563c2010-01-31 15:43:27 +01005156 <cond> is an optional matching condition built from ACLs. It makes it
5157 possible to ignore this rule when other conditions are not met.
5158
Willy Tarreau303c0352008-01-17 19:01:39 +01005159 Any header line matching extended regular expression <search> in the response
5160 will be completely deleted. Most common use of this is to remove unwanted
Willy Tarreau3c92c5f2011-08-28 09:45:47 +02005161 and/or sensitive headers or cookies from a response before passing it to the
Willy Tarreau303c0352008-01-17 19:01:39 +01005162 client.
5163
5164 Header transformations only apply to traffic which passes through HAProxy,
5165 and not to traffic generated by HAProxy, such as health-checks or error
5166 responses. Keep in mind that header names are not case-sensitive.
5167
5168 Example :
5169 # remove the Server header from responses
Willy Tarreau5e80e022013-05-25 08:31:25 +02005170 rspidel ^Server:.*
Willy Tarreau303c0352008-01-17 19:01:39 +01005171
Willy Tarreaufdb563c2010-01-31 15:43:27 +01005172 See also: "rspadd", "rsprep", "reqdel", section 6 about HTTP header
5173 manipulation, and section 7 about ACLs.
Willy Tarreau303c0352008-01-17 19:01:39 +01005174
5175
Willy Tarreaufdb563c2010-01-31 15:43:27 +01005176rspdeny <search> [{if | unless} <cond>]
5177rspideny <search> [{if | unless} <cond>] (ignore case)
Willy Tarreau303c0352008-01-17 19:01:39 +01005178 Block an HTTP response if a line matches a regular expression
5179 May be used in sections : defaults | frontend | listen | backend
5180 no | yes | yes | yes
5181 Arguments :
5182 <search> is the regular expression applied to HTTP headers and to the
5183 response line. This is an extended regular expression, so
5184 parenthesis grouping is supported and no preliminary backslash
5185 is required. Any space or known delimiter must be escaped using
5186 a backslash ('\'). The pattern applies to a full line at a time.
5187 The "rspdeny" keyword strictly matches case while "rspideny"
5188 ignores case.
5189
Willy Tarreaufdb563c2010-01-31 15:43:27 +01005190 <cond> is an optional matching condition built from ACLs. It makes it
5191 possible to ignore this rule when other conditions are not met.
5192
Willy Tarreau303c0352008-01-17 19:01:39 +01005193 A response containing any line which matches extended regular expression
5194 <search> will mark the request as denied. The test applies both to the
5195 response line and to response headers. Keep in mind that header names are not
5196 case-sensitive.
5197
5198 Main use of this keyword is to prevent sensitive information leak and to
Willy Tarreauced27012008-01-17 20:35:34 +01005199 block the response before it reaches the client. If a response is denied, it
5200 will be replaced with an HTTP 502 error so that the client never retrieves
5201 any sensitive data.
Willy Tarreau303c0352008-01-17 19:01:39 +01005202
5203 It is easier, faster and more powerful to use ACLs to write access policies.
5204 Rspdeny should be avoided in new designs.
5205
5206 Example :
5207 # Ensure that no content type matching ms-word will leak
5208 rspideny ^Content-type:\.*/ms-word
5209
Willy Tarreaufdb563c2010-01-31 15:43:27 +01005210 See also: "reqdeny", "acl", "block", section 6 about HTTP header manipulation
5211 and section 7 about ACLs.
Willy Tarreau303c0352008-01-17 19:01:39 +01005212
5213
Willy Tarreaufdb563c2010-01-31 15:43:27 +01005214rsprep <search> <string> [{if | unless} <cond>]
5215rspirep <search> <string> [{if | unless} <cond>] (ignore case)
Willy Tarreau303c0352008-01-17 19:01:39 +01005216 Replace a regular expression with a string in an HTTP response line
5217 May be used in sections : defaults | frontend | listen | backend
5218 no | yes | yes | yes
5219 Arguments :
5220 <search> is the regular expression applied to HTTP headers and to the
5221 response line. This is an extended regular expression, so
5222 parenthesis grouping is supported and no preliminary backslash
5223 is required. Any space or known delimiter must be escaped using
5224 a backslash ('\'). The pattern applies to a full line at a time.
5225 The "rsprep" keyword strictly matches case while "rspirep"
5226 ignores case.
5227
5228 <string> is the complete line to be added. Any space or known delimiter
5229 must be escaped using a backslash ('\'). References to matched
5230 pattern groups are possible using the common \N form, with N
5231 being a single digit between 0 and 9. Please refer to section
Willy Tarreauc57f0e22009-05-10 13:12:33 +02005232 6 about HTTP header manipulation for more information.
Willy Tarreau303c0352008-01-17 19:01:39 +01005233
Willy Tarreaufdb563c2010-01-31 15:43:27 +01005234 <cond> is an optional matching condition built from ACLs. It makes it
5235 possible to ignore this rule when other conditions are not met.
5236
Willy Tarreau303c0352008-01-17 19:01:39 +01005237 Any line matching extended regular expression <search> in the response (both
5238 the response line and header lines) will be completely replaced with
5239 <string>. Most common use of this is to rewrite Location headers.
5240
5241 Header transformations only apply to traffic which passes through HAProxy,
5242 and not to traffic generated by HAProxy, such as health-checks or error
5243 responses. Note that for increased readability, it is suggested to add enough
5244 spaces between the request and the response. Keep in mind that header names
5245 are not case-sensitive.
5246
5247 Example :
5248 # replace "Location: 127.0.0.1:8080" with "Location: www.mydomain.com"
5249 rspirep ^Location:\ 127.0.0.1:8080 Location:\ www.mydomain.com
5250
Willy Tarreaufdb563c2010-01-31 15:43:27 +01005251 See also: "rspadd", "rspdel", "reqrep", section 6 about HTTP header
5252 manipulation, and section 7 about ACLs.
Willy Tarreau303c0352008-01-17 19:01:39 +01005253
5254
David du Colombier486df472011-03-17 10:40:26 +01005255server <name> <address>[:[port]] [param*]
Willy Tarreaueabeafa2008-01-16 16:17:06 +01005256 Declare a server in a backend
5257 May be used in sections : defaults | frontend | listen | backend
5258 no | no | yes | yes
5259 Arguments :
5260 <name> is the internal name assigned to this server. This name will
Cyril Bonté941a0c62012-10-15 19:44:24 +02005261 appear in logs and alerts. If "http-send-name-header" is
Mark Lamourinec2247f02012-01-04 13:02:01 -05005262 set, it will be added to the request header sent to the server.
Willy Tarreaueabeafa2008-01-16 16:17:06 +01005263
David du Colombier486df472011-03-17 10:40:26 +01005264 <address> is the IPv4 or IPv6 address of the server. Alternatively, a
5265 resolvable hostname is supported, but this name will be resolved
5266 during start-up. Address "0.0.0.0" or "*" has a special meaning.
5267 It indicates that the connection will be forwarded to the same IP
Willy Tarreaud669a4f2010-07-13 14:49:50 +02005268 address as the one from the client connection. This is useful in
5269 transparent proxy architectures where the client's connection is
5270 intercepted and haproxy must forward to the original destination
5271 address. This is more or less what the "transparent" keyword does
5272 except that with a server it's possible to limit concurrency and
Willy Tarreau24709282013-03-10 21:32:12 +01005273 to report statistics. Optionally, an address family prefix may be
5274 used before the address to force the family regardless of the
5275 address format, which can be useful to specify a path to a unix
5276 socket with no slash ('/'). Currently supported prefixes are :
5277 - 'ipv4@' -> address is always IPv4
5278 - 'ipv6@' -> address is always IPv6
5279 - 'unix@' -> address is a path to a local unix socket
Willy Tarreaudad36a32013-03-11 01:20:04 +01005280 Any part of the address string may reference any number of
5281 environment variables by preceding their name with a dollar
5282 sign ('$') and optionally enclosing them with braces ('{}'),
5283 similarly to what is done in Bourne shell.
Willy Tarreaueabeafa2008-01-16 16:17:06 +01005284
Willy Tarreaub6205fd2012-09-24 12:27:33 +02005285 <port> is an optional port specification. If set, all connections will
Willy Tarreaueabeafa2008-01-16 16:17:06 +01005286 be sent to this port. If unset, the same port the client
5287 connected to will be used. The port may also be prefixed by a "+"
5288 or a "-". In this case, the server's port will be determined by
5289 adding this value to the client's port.
5290
5291 <param*> is a list of parameters for this server. The "server" keywords
5292 accepts an important number of options and has a complete section
Willy Tarreauc57f0e22009-05-10 13:12:33 +02005293 dedicated to it. Please refer to section 5 for more details.
Willy Tarreaueabeafa2008-01-16 16:17:06 +01005294
5295 Examples :
5296 server first 10.1.1.1:1080 cookie first check inter 1000
5297 server second 10.1.1.2:1080 cookie second check inter 1000
Willy Tarreau24709282013-03-10 21:32:12 +01005298 server transp ipv4@
Willy Tarreaudad36a32013-03-11 01:20:04 +01005299 server backup ${SRV_BACKUP}:1080 backup
5300 server www1_dc1 ${LAN_DC1}.101:80
5301 server www1_dc2 ${LAN_DC2}.101:80
Willy Tarreaueabeafa2008-01-16 16:17:06 +01005302
Mark Lamourinec2247f02012-01-04 13:02:01 -05005303 See also: "default-server", "http-send-name-header" and section 5 about
5304 server options
Willy Tarreaueabeafa2008-01-16 16:17:06 +01005305
5306
5307source <addr>[:<port>] [usesrc { <addr2>[:<port2>] | client | clientip } ]
Willy Tarreaubce70882009-09-07 11:51:47 +02005308source <addr>[:<port>] [usesrc { <addr2>[:<port2>] | hdr_ip(<hdr>[,<occ>]) } ]
Willy Tarreaud53f96b2009-02-04 18:46:54 +01005309source <addr>[:<port>] [interface <name>]
Willy Tarreaueabeafa2008-01-16 16:17:06 +01005310 Set the source address for outgoing connections
5311 May be used in sections : defaults | frontend | listen | backend
5312 yes | no | yes | yes
5313 Arguments :
5314 <addr> is the IPv4 address HAProxy will bind to before connecting to a
5315 server. This address is also used as a source for health checks.
Willy Tarreau24709282013-03-10 21:32:12 +01005316
Willy Tarreaueabeafa2008-01-16 16:17:06 +01005317 The default value of 0.0.0.0 means that the system will select
Willy Tarreau24709282013-03-10 21:32:12 +01005318 the most appropriate address to reach its destination. Optionally
5319 an address family prefix may be used before the address to force
5320 the family regardless of the address format, which can be useful
5321 to specify a path to a unix socket with no slash ('/'). Currently
5322 supported prefixes are :
5323 - 'ipv4@' -> address is always IPv4
5324 - 'ipv6@' -> address is always IPv6
5325 - 'unix@' -> address is a path to a local unix socket
Willy Tarreaudad36a32013-03-11 01:20:04 +01005326 Any part of the address string may reference any number of
5327 environment variables by preceding their name with a dollar
5328 sign ('$') and optionally enclosing them with braces ('{}'),
5329 similarly to what is done in Bourne shell.
Willy Tarreaueabeafa2008-01-16 16:17:06 +01005330
5331 <port> is an optional port. It is normally not needed but may be useful
5332 in some very specific contexts. The default value of zero means
Willy Tarreauc6f4ce82009-06-10 11:09:37 +02005333 the system will select a free port. Note that port ranges are not
5334 supported in the backend. If you want to force port ranges, you
5335 have to specify them on each "server" line.
Willy Tarreaueabeafa2008-01-16 16:17:06 +01005336
5337 <addr2> is the IP address to present to the server when connections are
5338 forwarded in full transparent proxy mode. This is currently only
5339 supported on some patched Linux kernels. When this address is
5340 specified, clients connecting to the server will be presented
5341 with this address, while health checks will still use the address
5342 <addr>.
5343
5344 <port2> is the optional port to present to the server when connections
5345 are forwarded in full transparent proxy mode (see <addr2> above).
5346 The default value of zero means the system will select a free
5347 port.
5348
Willy Tarreaubce70882009-09-07 11:51:47 +02005349 <hdr> is the name of a HTTP header in which to fetch the IP to bind to.
5350 This is the name of a comma-separated header list which can
5351 contain multiple IP addresses. By default, the last occurrence is
5352 used. This is designed to work with the X-Forwarded-For header
Baptiste Assmannea3e73b2013-02-02 23:47:49 +01005353 and to automatically bind to the client's IP address as seen
Willy Tarreaubce70882009-09-07 11:51:47 +02005354 by previous proxy, typically Stunnel. In order to use another
5355 occurrence from the last one, please see the <occ> parameter
5356 below. When the header (or occurrence) is not found, no binding
5357 is performed so that the proxy's default IP address is used. Also
5358 keep in mind that the header name is case insensitive, as for any
5359 HTTP header.
5360
5361 <occ> is the occurrence number of a value to be used in a multi-value
5362 header. This is to be used in conjunction with "hdr_ip(<hdr>)",
Jamie Gloudonaaa21002012-08-25 00:18:33 -04005363 in order to specify which occurrence to use for the source IP
Willy Tarreaubce70882009-09-07 11:51:47 +02005364 address. Positive values indicate a position from the first
5365 occurrence, 1 being the first one. Negative values indicate
5366 positions relative to the last one, -1 being the last one. This
5367 is helpful for situations where an X-Forwarded-For header is set
5368 at the entry point of an infrastructure and must be used several
5369 proxy layers away. When this value is not specified, -1 is
5370 assumed. Passing a zero here disables the feature.
5371
Willy Tarreaud53f96b2009-02-04 18:46:54 +01005372 <name> is an optional interface name to which to bind to for outgoing
5373 traffic. On systems supporting this features (currently, only
5374 Linux), this allows one to bind all traffic to the server to
5375 this interface even if it is not the one the system would select
5376 based on routing tables. This should be used with extreme care.
5377 Note that using this option requires root privileges.
5378
Willy Tarreaueabeafa2008-01-16 16:17:06 +01005379 The "source" keyword is useful in complex environments where a specific
5380 address only is allowed to connect to the servers. It may be needed when a
5381 private address must be used through a public gateway for instance, and it is
5382 known that the system cannot determine the adequate source address by itself.
5383
5384 An extension which is available on certain patched Linux kernels may be used
5385 through the "usesrc" optional keyword. It makes it possible to connect to the
5386 servers with an IP address which does not belong to the system itself. This
5387 is called "full transparent proxy mode". For this to work, the destination
5388 servers have to route their traffic back to this address through the machine
5389 running HAProxy, and IP forwarding must generally be enabled on this machine.
5390
5391 In this "full transparent proxy" mode, it is possible to force a specific IP
5392 address to be presented to the servers. This is not much used in fact. A more
5393 common use is to tell HAProxy to present the client's IP address. For this,
5394 there are two methods :
5395
5396 - present the client's IP and port addresses. This is the most transparent
5397 mode, but it can cause problems when IP connection tracking is enabled on
5398 the machine, because a same connection may be seen twice with different
5399 states. However, this solution presents the huge advantage of not
5400 limiting the system to the 64k outgoing address+port couples, because all
5401 of the client ranges may be used.
5402
5403 - present only the client's IP address and select a spare port. This
5404 solution is still quite elegant but slightly less transparent (downstream
5405 firewalls logs will not match upstream's). It also presents the downside
5406 of limiting the number of concurrent connections to the usual 64k ports.
5407 However, since the upstream and downstream ports are different, local IP
5408 connection tracking on the machine will not be upset by the reuse of the
5409 same session.
5410
5411 Note that depending on the transparent proxy technology used, it may be
5412 required to force the source address. In fact, cttproxy version 2 requires an
5413 IP address in <addr> above, and does not support setting of "0.0.0.0" as the
5414 IP address because it creates NAT entries which much match the exact outgoing
5415 address. Tproxy version 4 and some other kernel patches which work in pure
5416 forwarding mode generally will not have this limitation.
5417
5418 This option sets the default source for all servers in the backend. It may
5419 also be specified in a "defaults" section. Finer source address specification
5420 is possible at the server level using the "source" server option. Refer to
Willy Tarreauc57f0e22009-05-10 13:12:33 +02005421 section 5 for more information.
Willy Tarreaueabeafa2008-01-16 16:17:06 +01005422
5423 Examples :
5424 backend private
5425 # Connect to the servers using our 192.168.1.200 source address
5426 source 192.168.1.200
5427
5428 backend transparent_ssl1
5429 # Connect to the SSL farm from the client's source address
5430 source 192.168.1.200 usesrc clientip
5431
5432 backend transparent_ssl2
5433 # Connect to the SSL farm from the client's source address and port
5434 # not recommended if IP conntrack is present on the local machine.
5435 source 192.168.1.200 usesrc client
5436
5437 backend transparent_ssl3
5438 # Connect to the SSL farm from the client's source address. It
5439 # is more conntrack-friendly.
5440 source 192.168.1.200 usesrc clientip
5441
5442 backend transparent_smtp
5443 # Connect to the SMTP farm from the client's source address/port
5444 # with Tproxy version 4.
5445 source 0.0.0.0 usesrc clientip
5446
Willy Tarreaubce70882009-09-07 11:51:47 +02005447 backend transparent_http
5448 # Connect to the servers using the client's IP as seen by previous
5449 # proxy.
5450 source 0.0.0.0 usesrc hdr_ip(x-forwarded-for,-1)
5451
Willy Tarreauc57f0e22009-05-10 13:12:33 +02005452 See also : the "source" server option in section 5, the Tproxy patches for
Willy Tarreaueabeafa2008-01-16 16:17:06 +01005453 the Linux kernel on www.balabit.com, the "bind" keyword.
5454
Krzysztof Piotr Oledzki25b501a2008-01-06 16:36:16 +01005455
Willy Tarreau844e3c52008-01-11 16:28:18 +01005456srvtimeout <timeout> (deprecated)
5457 Set the maximum inactivity time on the server side.
5458 May be used in sections : defaults | frontend | listen | backend
5459 yes | no | yes | yes
5460 Arguments :
5461 <timeout> is the timeout value specified in milliseconds by default, but
5462 can be in any other unit if the number is suffixed by the unit,
5463 as explained at the top of this document.
5464
5465 The inactivity timeout applies when the server is expected to acknowledge or
5466 send data. In HTTP mode, this timeout is particularly important to consider
5467 during the first phase of the server's response, when it has to send the
5468 headers, as it directly represents the server's processing time for the
5469 request. To find out what value to put there, it's often good to start with
5470 what would be considered as unacceptable response times, then check the logs
5471 to observe the response time distribution, and adjust the value accordingly.
5472
5473 The value is specified in milliseconds by default, but can be in any other
5474 unit if the number is suffixed by the unit, as specified at the top of this
5475 document. In TCP mode (and to a lesser extent, in HTTP mode), it is highly
5476 recommended that the client timeout remains equal to the server timeout in
5477 order to avoid complex situations to debug. Whatever the expected server
Willy Tarreaud2a4aa22008-01-31 15:28:22 +01005478 response times, it is a good practice to cover at least one or several TCP
Willy Tarreau844e3c52008-01-11 16:28:18 +01005479 packet losses by specifying timeouts that are slightly above multiples of 3
Willy Tarreaud72758d2010-01-12 10:42:19 +01005480 seconds (eg: 4 or 5 seconds minimum).
Willy Tarreau844e3c52008-01-11 16:28:18 +01005481
5482 This parameter is specific to backends, but can be specified once for all in
5483 "defaults" sections. This is in fact one of the easiest solutions not to
5484 forget about it. An unspecified timeout results in an infinite timeout, which
5485 is not recommended. Such a usage is accepted and works but reports a warning
5486 during startup because it may results in accumulation of expired sessions in
5487 the system if the system's timeouts are not configured either.
5488
5489 This parameter is provided for compatibility but is currently deprecated.
5490 Please use "timeout server" instead.
5491
Willy Tarreauce887fd2012-05-12 12:50:00 +02005492 See also : "timeout server", "timeout tunnel", "timeout client" and
5493 "clitimeout".
Willy Tarreau844e3c52008-01-11 16:28:18 +01005494
5495
Cyril Bonté66c327d2010-10-12 00:14:37 +02005496stats admin { if | unless } <cond>
5497 Enable statistics admin level if/unless a condition is matched
5498 May be used in sections : defaults | frontend | listen | backend
5499 no | no | yes | yes
5500
5501 This statement enables the statistics admin level if/unless a condition is
5502 matched.
5503
5504 The admin level allows to enable/disable servers from the web interface. By
5505 default, statistics page is read-only for security reasons.
5506
Cyril Bonté02ff8ef2010-12-14 22:48:49 +01005507 Note : Consider not using this feature in multi-process mode (nbproc > 1)
5508 unless you know what you do : memory is not shared between the
5509 processes, which can result in random behaviours.
5510
Cyril Bonté23b39d92011-02-10 22:54:44 +01005511 Currently, the POST request is limited to the buffer size minus the reserved
5512 buffer space, which means that if the list of servers is too long, the
5513 request won't be processed. It is recommended to alter few servers at a
5514 time.
Cyril Bonté66c327d2010-10-12 00:14:37 +02005515
5516 Example :
5517 # statistics admin level only for localhost
5518 backend stats_localhost
5519 stats enable
5520 stats admin if LOCALHOST
5521
5522 Example :
5523 # statistics admin level always enabled because of the authentication
5524 backend stats_auth
5525 stats enable
5526 stats auth admin:AdMiN123
5527 stats admin if TRUE
5528
5529 Example :
5530 # statistics admin level depends on the authenticated user
5531 userlist stats-auth
5532 group admin users admin
5533 user admin insecure-password AdMiN123
5534 group readonly users haproxy
5535 user haproxy insecure-password haproxy
5536
5537 backend stats_auth
5538 stats enable
5539 acl AUTH http_auth(stats-auth)
5540 acl AUTH_ADMIN http_auth_group(stats-auth) admin
5541 stats http-request auth unless AUTH
5542 stats admin if AUTH_ADMIN
5543
Cyril Bonté02ff8ef2010-12-14 22:48:49 +01005544 See also : "stats enable", "stats auth", "stats http-request", "nbproc",
5545 "bind-process", section 3.4 about userlists and section 7 about
5546 ACL usage.
Cyril Bonté66c327d2010-10-12 00:14:37 +02005547
5548
Willy Tarreaueabeafa2008-01-16 16:17:06 +01005549stats auth <user>:<passwd>
5550 Enable statistics with authentication and grant access to an account
5551 May be used in sections : defaults | frontend | listen | backend
5552 yes | no | yes | yes
5553 Arguments :
5554 <user> is a user name to grant access to
5555
5556 <passwd> is the cleartext password associated to this user
5557
5558 This statement enables statistics with default settings, and restricts access
5559 to declared users only. It may be repeated as many times as necessary to
5560 allow as many users as desired. When a user tries to access the statistics
5561 without a valid account, a "401 Forbidden" response will be returned so that
5562 the browser asks the user to provide a valid user and password. The real
5563 which will be returned to the browser is configurable using "stats realm".
5564
5565 Since the authentication method is HTTP Basic Authentication, the passwords
5566 circulate in cleartext on the network. Thus, it was decided that the
5567 configuration file would also use cleartext passwords to remind the users
Willy Tarreau3c92c5f2011-08-28 09:45:47 +02005568 that those ones should not be sensitive and not shared with any other account.
Willy Tarreaueabeafa2008-01-16 16:17:06 +01005569
5570 It is also possible to reduce the scope of the proxies which appear in the
5571 report using "stats scope".
5572
5573 Though this statement alone is enough to enable statistics reporting, it is
5574 recommended to set all other settings in order to avoid relying on default
5575 unobvious parameters.
5576
5577 Example :
5578 # public access (limited to this backend only)
5579 backend public_www
5580 server srv1 192.168.0.1:80
5581 stats enable
5582 stats hide-version
5583 stats scope .
5584 stats uri /admin?stats
5585 stats realm Haproxy\ Statistics
5586 stats auth admin1:AdMiN123
5587 stats auth admin2:AdMiN321
5588
5589 # internal monitoring access (unlimited)
5590 backend private_monitoring
5591 stats enable
5592 stats uri /admin?stats
5593 stats refresh 5s
5594
5595 See also : "stats enable", "stats realm", "stats scope", "stats uri"
5596
5597
5598stats enable
5599 Enable statistics reporting with default settings
5600 May be used in sections : defaults | frontend | listen | backend
5601 yes | no | yes | yes
5602 Arguments : none
5603
5604 This statement enables statistics reporting with default settings defined
5605 at build time. Unless stated otherwise, these settings are used :
5606 - stats uri : /haproxy?stats
5607 - stats realm : "HAProxy Statistics"
5608 - stats auth : no authentication
5609 - stats scope : no restriction
5610
5611 Though this statement alone is enough to enable statistics reporting, it is
5612 recommended to set all other settings in order to avoid relying on default
5613 unobvious parameters.
5614
5615 Example :
5616 # public access (limited to this backend only)
5617 backend public_www
5618 server srv1 192.168.0.1:80
5619 stats enable
5620 stats hide-version
5621 stats scope .
5622 stats uri /admin?stats
5623 stats realm Haproxy\ Statistics
5624 stats auth admin1:AdMiN123
5625 stats auth admin2:AdMiN321
5626
5627 # internal monitoring access (unlimited)
5628 backend private_monitoring
5629 stats enable
5630 stats uri /admin?stats
5631 stats refresh 5s
5632
5633 See also : "stats auth", "stats realm", "stats uri"
5634
5635
Willy Tarreaud63335a2010-02-26 12:56:52 +01005636stats hide-version
5637 Enable statistics and hide HAProxy version reporting
Willy Tarreau1d45b7c2009-08-16 10:29:18 +02005638 May be used in sections : defaults | frontend | listen | backend
5639 yes | no | yes | yes
Willy Tarreaud63335a2010-02-26 12:56:52 +01005640 Arguments : none
Willy Tarreau1d45b7c2009-08-16 10:29:18 +02005641
Willy Tarreaud63335a2010-02-26 12:56:52 +01005642 By default, the stats page reports some useful status information along with
5643 the statistics. Among them is HAProxy's version. However, it is generally
5644 considered dangerous to report precise version to anyone, as it can help them
5645 target known weaknesses with specific attacks. The "stats hide-version"
5646 statement removes the version from the statistics report. This is recommended
5647 for public sites or any site with a weak login/password.
Willy Tarreau1d45b7c2009-08-16 10:29:18 +02005648
Krzysztof Piotr Oledzki48cb2ae2009-10-02 22:51:14 +02005649 Though this statement alone is enough to enable statistics reporting, it is
5650 recommended to set all other settings in order to avoid relying on default
5651 unobvious parameters.
5652
Willy Tarreaud63335a2010-02-26 12:56:52 +01005653 Example :
5654 # public access (limited to this backend only)
5655 backend public_www
5656 server srv1 192.168.0.1:80
Krzysztof Piotr Oledzki48cb2ae2009-10-02 22:51:14 +02005657 stats enable
Willy Tarreaud63335a2010-02-26 12:56:52 +01005658 stats hide-version
5659 stats scope .
5660 stats uri /admin?stats
5661 stats realm Haproxy\ Statistics
5662 stats auth admin1:AdMiN123
5663 stats auth admin2:AdMiN321
Willy Tarreau1d45b7c2009-08-16 10:29:18 +02005664
Willy Tarreau1d45b7c2009-08-16 10:29:18 +02005665 # internal monitoring access (unlimited)
5666 backend private_monitoring
5667 stats enable
Willy Tarreaud63335a2010-02-26 12:56:52 +01005668 stats uri /admin?stats
5669 stats refresh 5s
Krzysztof Piotr Oledzki15514c22010-01-04 16:03:09 +01005670
Willy Tarreaud63335a2010-02-26 12:56:52 +01005671 See also : "stats auth", "stats enable", "stats realm", "stats uri"
Willy Tarreau1d45b7c2009-08-16 10:29:18 +02005672
Willy Tarreau983e01e2010-01-11 18:42:06 +01005673
Cyril Bonté2be1b3f2010-09-30 23:46:30 +02005674stats http-request { allow | deny | auth [realm <realm>] }
5675 [ { if | unless } <condition> ]
5676 Access control for statistics
5677
5678 May be used in sections: defaults | frontend | listen | backend
5679 no | no | yes | yes
5680
5681 As "http-request", these set of options allow to fine control access to
5682 statistics. Each option may be followed by if/unless and acl.
5683 First option with matched condition (or option without condition) is final.
5684 For "deny" a 403 error will be returned, for "allow" normal processing is
5685 performed, for "auth" a 401/407 error code is returned so the client
5686 should be asked to enter a username and password.
5687
5688 There is no fixed limit to the number of http-request statements per
5689 instance.
5690
5691 See also : "http-request", section 3.4 about userlists and section 7
5692 about ACL usage.
5693
5694
Willy Tarreaueabeafa2008-01-16 16:17:06 +01005695stats realm <realm>
5696 Enable statistics and set authentication realm
5697 May be used in sections : defaults | frontend | listen | backend
5698 yes | no | yes | yes
5699 Arguments :
5700 <realm> is the name of the HTTP Basic Authentication realm reported to
5701 the browser. The browser uses it to display it in the pop-up
5702 inviting the user to enter a valid username and password.
5703
5704 The realm is read as a single word, so any spaces in it should be escaped
5705 using a backslash ('\').
5706
5707 This statement is useful only in conjunction with "stats auth" since it is
5708 only related to authentication.
5709
5710 Though this statement alone is enough to enable statistics reporting, it is
5711 recommended to set all other settings in order to avoid relying on default
5712 unobvious parameters.
5713
5714 Example :
5715 # public access (limited to this backend only)
5716 backend public_www
5717 server srv1 192.168.0.1:80
5718 stats enable
5719 stats hide-version
5720 stats scope .
5721 stats uri /admin?stats
5722 stats realm Haproxy\ Statistics
5723 stats auth admin1:AdMiN123
5724 stats auth admin2:AdMiN321
5725
5726 # internal monitoring access (unlimited)
5727 backend private_monitoring
5728 stats enable
5729 stats uri /admin?stats
5730 stats refresh 5s
5731
5732 See also : "stats auth", "stats enable", "stats uri"
5733
5734
5735stats refresh <delay>
5736 Enable statistics with automatic refresh
5737 May be used in sections : defaults | frontend | listen | backend
5738 yes | no | yes | yes
5739 Arguments :
5740 <delay> is the suggested refresh delay, specified in seconds, which will
5741 be returned to the browser consulting the report page. While the
5742 browser is free to apply any delay, it will generally respect it
5743 and refresh the page this every seconds. The refresh interval may
5744 be specified in any other non-default time unit, by suffixing the
5745 unit after the value, as explained at the top of this document.
5746
5747 This statement is useful on monitoring displays with a permanent page
5748 reporting the load balancer's activity. When set, the HTML report page will
5749 include a link "refresh"/"stop refresh" so that the user can select whether
5750 he wants automatic refresh of the page or not.
5751
5752 Though this statement alone is enough to enable statistics reporting, it is
5753 recommended to set all other settings in order to avoid relying on default
5754 unobvious parameters.
5755
5756 Example :
5757 # public access (limited to this backend only)
5758 backend public_www
5759 server srv1 192.168.0.1:80
5760 stats enable
5761 stats hide-version
5762 stats scope .
5763 stats uri /admin?stats
5764 stats realm Haproxy\ Statistics
5765 stats auth admin1:AdMiN123
5766 stats auth admin2:AdMiN321
5767
5768 # internal monitoring access (unlimited)
5769 backend private_monitoring
5770 stats enable
5771 stats uri /admin?stats
5772 stats refresh 5s
5773
5774 See also : "stats auth", "stats enable", "stats realm", "stats uri"
5775
5776
5777stats scope { <name> | "." }
5778 Enable statistics and limit access scope
5779 May be used in sections : defaults | frontend | listen | backend
5780 yes | no | yes | yes
5781 Arguments :
5782 <name> is the name of a listen, frontend or backend section to be
5783 reported. The special name "." (a single dot) designates the
5784 section in which the statement appears.
5785
5786 When this statement is specified, only the sections enumerated with this
5787 statement will appear in the report. All other ones will be hidden. This
5788 statement may appear as many times as needed if multiple sections need to be
5789 reported. Please note that the name checking is performed as simple string
5790 comparisons, and that it is never checked that a give section name really
5791 exists.
5792
5793 Though this statement alone is enough to enable statistics reporting, it is
5794 recommended to set all other settings in order to avoid relying on default
5795 unobvious parameters.
5796
5797 Example :
5798 # public access (limited to this backend only)
5799 backend public_www
5800 server srv1 192.168.0.1:80
5801 stats enable
5802 stats hide-version
5803 stats scope .
5804 stats uri /admin?stats
5805 stats realm Haproxy\ Statistics
5806 stats auth admin1:AdMiN123
5807 stats auth admin2:AdMiN321
5808
5809 # internal monitoring access (unlimited)
5810 backend private_monitoring
5811 stats enable
5812 stats uri /admin?stats
5813 stats refresh 5s
5814
5815 See also : "stats auth", "stats enable", "stats realm", "stats uri"
5816
Willy Tarreaud63335a2010-02-26 12:56:52 +01005817
Willy Tarreauc9705a12010-07-27 20:05:50 +02005818stats show-desc [ <desc> ]
Willy Tarreaud63335a2010-02-26 12:56:52 +01005819 Enable reporting of a description on the statistics page.
5820 May be used in sections : defaults | frontend | listen | backend
5821 yes | no | yes | yes
5822
Willy Tarreauc9705a12010-07-27 20:05:50 +02005823 <desc> is an optional description to be reported. If unspecified, the
Willy Tarreaud63335a2010-02-26 12:56:52 +01005824 description from global section is automatically used instead.
5825
5826 This statement is useful for users that offer shared services to their
5827 customers, where node or description should be different for each customer.
5828
5829 Though this statement alone is enough to enable statistics reporting, it is
5830 recommended to set all other settings in order to avoid relying on default
Dmitry Sivachenko7823de32012-05-16 14:00:26 +04005831 unobvious parameters. By default description is not shown.
Willy Tarreaud63335a2010-02-26 12:56:52 +01005832
5833 Example :
5834 # internal monitoring access (unlimited)
5835 backend private_monitoring
5836 stats enable
5837 stats show-desc Master node for Europe, Asia, Africa
5838 stats uri /admin?stats
5839 stats refresh 5s
5840
5841 See also: "show-node", "stats enable", "stats uri" and "description" in
5842 global section.
5843
5844
5845stats show-legends
5846 Enable reporting additional informations on the statistics page :
5847 - cap: capabilities (proxy)
5848 - mode: one of tcp, http or health (proxy)
5849 - id: SNMP ID (proxy, socket, server)
5850 - IP (socket, server)
5851 - cookie (backend, server)
5852
5853 Though this statement alone is enough to enable statistics reporting, it is
5854 recommended to set all other settings in order to avoid relying on default
Dmitry Sivachenko7823de32012-05-16 14:00:26 +04005855 unobvious parameters. Default behaviour is not to show this information.
Willy Tarreaud63335a2010-02-26 12:56:52 +01005856
5857 See also: "stats enable", "stats uri".
5858
5859
5860stats show-node [ <name> ]
5861 Enable reporting of a host name on the statistics page.
5862 May be used in sections : defaults | frontend | listen | backend
5863 yes | no | yes | yes
5864 Arguments:
5865 <name> is an optional name to be reported. If unspecified, the
5866 node name from global section is automatically used instead.
5867
5868 This statement is useful for users that offer shared services to their
5869 customers, where node or description might be different on a stats page
Dmitry Sivachenko7823de32012-05-16 14:00:26 +04005870 provided for each customer. Default behaviour is not to show host name.
Willy Tarreaud63335a2010-02-26 12:56:52 +01005871
5872 Though this statement alone is enough to enable statistics reporting, it is
5873 recommended to set all other settings in order to avoid relying on default
5874 unobvious parameters.
5875
5876 Example:
5877 # internal monitoring access (unlimited)
5878 backend private_monitoring
5879 stats enable
5880 stats show-node Europe-1
5881 stats uri /admin?stats
5882 stats refresh 5s
5883
5884 See also: "show-desc", "stats enable", "stats uri", and "node" in global
5885 section.
5886
Willy Tarreaueabeafa2008-01-16 16:17:06 +01005887
5888stats uri <prefix>
5889 Enable statistics and define the URI prefix to access them
5890 May be used in sections : defaults | frontend | listen | backend
5891 yes | no | yes | yes
5892 Arguments :
5893 <prefix> is the prefix of any URI which will be redirected to stats. This
5894 prefix may contain a question mark ('?') to indicate part of a
5895 query string.
5896
5897 The statistics URI is intercepted on the relayed traffic, so it appears as a
5898 page within the normal application. It is strongly advised to ensure that the
5899 selected URI will never appear in the application, otherwise it will never be
5900 possible to reach it in the application.
5901
5902 The default URI compiled in haproxy is "/haproxy?stats", but this may be
Krzysztof Piotr Oledzkif8645332009-12-13 21:55:50 +01005903 changed at build time, so it's better to always explicitly specify it here.
Willy Tarreaueabeafa2008-01-16 16:17:06 +01005904 It is generally a good idea to include a question mark in the URI so that
5905 intermediate proxies refrain from caching the results. Also, since any string
5906 beginning with the prefix will be accepted as a stats request, the question
5907 mark helps ensuring that no valid URI will begin with the same words.
5908
5909 It is sometimes very convenient to use "/" as the URI prefix, and put that
5910 statement in a "listen" instance of its own. That makes it easy to dedicate
5911 an address or a port to statistics only.
5912
5913 Though this statement alone is enough to enable statistics reporting, it is
5914 recommended to set all other settings in order to avoid relying on default
5915 unobvious parameters.
5916
5917 Example :
5918 # public access (limited to this backend only)
5919 backend public_www
5920 server srv1 192.168.0.1:80
5921 stats enable
5922 stats hide-version
5923 stats scope .
5924 stats uri /admin?stats
5925 stats realm Haproxy\ Statistics
5926 stats auth admin1:AdMiN123
5927 stats auth admin2:AdMiN321
5928
5929 # internal monitoring access (unlimited)
5930 backend private_monitoring
5931 stats enable
5932 stats uri /admin?stats
5933 stats refresh 5s
5934
5935 See also : "stats auth", "stats enable", "stats realm"
5936
5937
Willy Tarreaud63335a2010-02-26 12:56:52 +01005938stick match <pattern> [table <table>] [{if | unless} <cond>]
5939 Define a request pattern matching condition to stick a user to a server
Willy Tarreaueabeafa2008-01-16 16:17:06 +01005940 May be used in sections : defaults | frontend | listen | backend
Willy Tarreaud63335a2010-02-26 12:56:52 +01005941 no | no | yes | yes
Willy Tarreaub937b7e2010-01-12 15:27:54 +01005942
5943 Arguments :
Willy Tarreau74ca5042013-06-11 23:12:07 +02005944 <pattern> is a pattern extraction rule as described in section 7.3. It
Willy Tarreaub937b7e2010-01-12 15:27:54 +01005945 describes what elements of the incoming request or connection
5946 will be analysed in the hope to find a matching entry in a
5947 stickiness table. This rule is mandatory.
5948
5949 <table> is an optional stickiness table name. If unspecified, the same
5950 backend's table is used. A stickiness table is declared using
5951 the "stick-table" statement.
5952
5953 <cond> is an optional matching condition. It makes it possible to match
5954 on a certain criterion only when other conditions are met (or
5955 not met). For instance, it could be used to match on a source IP
5956 address except when a request passes through a known proxy, in
5957 which case we'd match on a header containing that IP address.
5958
5959 Some protocols or applications require complex stickiness rules and cannot
5960 always simply rely on cookies nor hashing. The "stick match" statement
5961 describes a rule to extract the stickiness criterion from an incoming request
5962 or connection. See section 7 for a complete list of possible patterns and
5963 transformation rules.
5964
5965 The table has to be declared using the "stick-table" statement. It must be of
5966 a type compatible with the pattern. By default it is the one which is present
5967 in the same backend. It is possible to share a table with other backends by
5968 referencing it using the "table" keyword. If another table is referenced,
5969 the server's ID inside the backends are used. By default, all server IDs
5970 start at 1 in each backend, so the server ordering is enough. But in case of
5971 doubt, it is highly recommended to force server IDs using their "id" setting.
5972
5973 It is possible to restrict the conditions where a "stick match" statement
5974 will apply, using "if" or "unless" followed by a condition. See section 7 for
5975 ACL based conditions.
5976
5977 There is no limit on the number of "stick match" statements. The first that
5978 applies and matches will cause the request to be directed to the same server
5979 as was used for the request which created the entry. That way, multiple
5980 matches can be used as fallbacks.
5981
5982 The stick rules are checked after the persistence cookies, so they will not
5983 affect stickiness if a cookie has already been used to select a server. That
5984 way, it becomes very easy to insert cookies and match on IP addresses in
5985 order to maintain stickiness between HTTP and HTTPS.
5986
Cyril Bonté02ff8ef2010-12-14 22:48:49 +01005987 Note : Consider not using this feature in multi-process mode (nbproc > 1)
5988 unless you know what you do : memory is not shared between the
5989 processes, which can result in random behaviours.
5990
Willy Tarreaub937b7e2010-01-12 15:27:54 +01005991 Example :
5992 # forward SMTP users to the same server they just used for POP in the
5993 # last 30 minutes
5994 backend pop
5995 mode tcp
5996 balance roundrobin
5997 stick store-request src
5998 stick-table type ip size 200k expire 30m
5999 server s1 192.168.1.1:110
6000 server s2 192.168.1.1:110
6001
6002 backend smtp
6003 mode tcp
6004 balance roundrobin
6005 stick match src table pop
6006 server s1 192.168.1.1:25
6007 server s2 192.168.1.1:25
6008
Cyril Bonté02ff8ef2010-12-14 22:48:49 +01006009 See also : "stick-table", "stick on", "nbproc", "bind-process" and section 7
6010 about ACLs and pattern extraction.
Willy Tarreaub937b7e2010-01-12 15:27:54 +01006011
6012
6013stick on <pattern> [table <table>] [{if | unless} <condition>]
6014 Define a request pattern to associate a user to a server
6015 May be used in sections : defaults | frontend | listen | backend
6016 no | no | yes | yes
6017
6018 Note : This form is exactly equivalent to "stick match" followed by
6019 "stick store-request", all with the same arguments. Please refer
6020 to both keywords for details. It is only provided as a convenience
6021 for writing more maintainable configurations.
6022
Cyril Bonté02ff8ef2010-12-14 22:48:49 +01006023 Note : Consider not using this feature in multi-process mode (nbproc > 1)
6024 unless you know what you do : memory is not shared between the
6025 processes, which can result in random behaviours.
6026
Willy Tarreaub937b7e2010-01-12 15:27:54 +01006027 Examples :
6028 # The following form ...
Willy Tarreauec579d82010-02-26 19:15:04 +01006029 stick on src table pop if !localhost
Willy Tarreaub937b7e2010-01-12 15:27:54 +01006030
6031 # ...is strictly equivalent to this one :
6032 stick match src table pop if !localhost
6033 stick store-request src table pop if !localhost
6034
6035
6036 # Use cookie persistence for HTTP, and stick on source address for HTTPS as
6037 # well as HTTP without cookie. Share the same table between both accesses.
6038 backend http
6039 mode http
6040 balance roundrobin
6041 stick on src table https
6042 cookie SRV insert indirect nocache
6043 server s1 192.168.1.1:80 cookie s1
6044 server s2 192.168.1.1:80 cookie s2
6045
6046 backend https
6047 mode tcp
6048 balance roundrobin
6049 stick-table type ip size 200k expire 30m
6050 stick on src
6051 server s1 192.168.1.1:443
6052 server s2 192.168.1.1:443
6053
Cyril Bonté02ff8ef2010-12-14 22:48:49 +01006054 See also : "stick match", "stick store-request", "nbproc" and "bind-process".
Willy Tarreaub937b7e2010-01-12 15:27:54 +01006055
6056
6057stick store-request <pattern> [table <table>] [{if | unless} <condition>]
6058 Define a request pattern used to create an entry in a stickiness table
6059 May be used in sections : defaults | frontend | listen | backend
6060 no | no | yes | yes
6061
6062 Arguments :
Willy Tarreau74ca5042013-06-11 23:12:07 +02006063 <pattern> is a pattern extraction rule as described in section 7.3. It
Willy Tarreaub937b7e2010-01-12 15:27:54 +01006064 describes what elements of the incoming request or connection
6065 will be analysed, extracted and stored in the table once a
6066 server is selected.
6067
6068 <table> is an optional stickiness table name. If unspecified, the same
6069 backend's table is used. A stickiness table is declared using
6070 the "stick-table" statement.
6071
6072 <cond> is an optional storage condition. It makes it possible to store
6073 certain criteria only when some conditions are met (or not met).
6074 For instance, it could be used to store the source IP address
6075 except when the request passes through a known proxy, in which
6076 case we'd store a converted form of a header containing that IP
6077 address.
6078
6079 Some protocols or applications require complex stickiness rules and cannot
6080 always simply rely on cookies nor hashing. The "stick store-request" statement
6081 describes a rule to decide what to extract from the request and when to do
6082 it, in order to store it into a stickiness table for further requests to
6083 match it using the "stick match" statement. Obviously the extracted part must
6084 make sense and have a chance to be matched in a further request. Storing a
6085 client's IP address for instance often makes sense. Storing an ID found in a
6086 URL parameter also makes sense. Storing a source port will almost never make
6087 any sense because it will be randomly matched. See section 7 for a complete
6088 list of possible patterns and transformation rules.
6089
6090 The table has to be declared using the "stick-table" statement. It must be of
6091 a type compatible with the pattern. By default it is the one which is present
6092 in the same backend. It is possible to share a table with other backends by
6093 referencing it using the "table" keyword. If another table is referenced,
6094 the server's ID inside the backends are used. By default, all server IDs
6095 start at 1 in each backend, so the server ordering is enough. But in case of
6096 doubt, it is highly recommended to force server IDs using their "id" setting.
6097
6098 It is possible to restrict the conditions where a "stick store-request"
6099 statement will apply, using "if" or "unless" followed by a condition. This
6100 condition will be evaluated while parsing the request, so any criteria can be
6101 used. See section 7 for ACL based conditions.
6102
6103 There is no limit on the number of "stick store-request" statements, but
6104 there is a limit of 8 simultaneous stores per request or response. This
6105 makes it possible to store up to 8 criteria, all extracted from either the
6106 request or the response, regardless of the number of rules. Only the 8 first
6107 ones which match will be kept. Using this, it is possible to feed multiple
6108 tables at once in the hope to increase the chance to recognize a user on
6109 another protocol or access method.
6110
6111 The "store-request" rules are evaluated once the server connection has been
6112 established, so that the table will contain the real server that processed
6113 the request.
6114
Cyril Bonté02ff8ef2010-12-14 22:48:49 +01006115 Note : Consider not using this feature in multi-process mode (nbproc > 1)
6116 unless you know what you do : memory is not shared between the
6117 processes, which can result in random behaviours.
6118
Willy Tarreaub937b7e2010-01-12 15:27:54 +01006119 Example :
6120 # forward SMTP users to the same server they just used for POP in the
6121 # last 30 minutes
6122 backend pop
6123 mode tcp
6124 balance roundrobin
6125 stick store-request src
6126 stick-table type ip size 200k expire 30m
6127 server s1 192.168.1.1:110
6128 server s2 192.168.1.1:110
6129
6130 backend smtp
6131 mode tcp
6132 balance roundrobin
6133 stick match src table pop
6134 server s1 192.168.1.1:25
6135 server s2 192.168.1.1:25
6136
Cyril Bonté02ff8ef2010-12-14 22:48:49 +01006137 See also : "stick-table", "stick on", "nbproc", "bind-process" and section 7
6138 about ACLs and pattern extraction.
Willy Tarreaub937b7e2010-01-12 15:27:54 +01006139
6140
Emeric Brun7c6b82e2010-09-24 16:34:28 +02006141stick-table type {ip | integer | string [len <length>] | binary [len <length>]}
Emeric Brunf099e792010-09-27 12:05:28 +02006142 size <size> [expire <expire>] [nopurge] [peers <peersect>]
6143 [store <data_type>]*
Willy Tarreaub937b7e2010-01-12 15:27:54 +01006144 Configure the stickiness table for the current backend
6145 May be used in sections : defaults | frontend | listen | backend
Willy Tarreauc00cdc22010-06-06 16:48:26 +02006146 no | yes | yes | yes
Willy Tarreaub937b7e2010-01-12 15:27:54 +01006147
6148 Arguments :
6149 ip a table declared with "type ip" will only store IPv4 addresses.
6150 This form is very compact (about 50 bytes per entry) and allows
6151 very fast entry lookup and stores with almost no overhead. This
6152 is mainly used to store client source IP addresses.
6153
David du Colombier9a6d3c92011-03-17 10:40:24 +01006154 ipv6 a table declared with "type ipv6" will only store IPv6 addresses.
6155 This form is very compact (about 60 bytes per entry) and allows
6156 very fast entry lookup and stores with almost no overhead. This
6157 is mainly used to store client source IP addresses.
6158
Willy Tarreaub937b7e2010-01-12 15:27:54 +01006159 integer a table declared with "type integer" will store 32bit integers
6160 which can represent a client identifier found in a request for
6161 instance.
6162
6163 string a table declared with "type string" will store substrings of up
6164 to <len> characters. If the string provided by the pattern
6165 extractor is larger than <len>, it will be truncated before
6166 being stored. During matching, at most <len> characters will be
6167 compared between the string in the table and the extracted
6168 pattern. When not specified, the string is automatically limited
Emeric Brun7c6b82e2010-09-24 16:34:28 +02006169 to 32 characters.
6170
6171 binary a table declared with "type binary" will store binary blocks
6172 of <len> bytes. If the block provided by the pattern
6173 extractor is larger than <len>, it will be truncated before
6174 being stored. If the block provided by the pattern extractor
6175 is shorter than <len>, it will be padded by 0. When not
6176 specified, the block is automatically limited to 32 bytes.
Willy Tarreaub937b7e2010-01-12 15:27:54 +01006177
6178 <length> is the maximum number of characters that will be stored in a
Emeric Brun7c6b82e2010-09-24 16:34:28 +02006179 "string" type table (See type "string" above). Or the number
6180 of bytes of the block in "binary" type table. Be careful when
Willy Tarreaub937b7e2010-01-12 15:27:54 +01006181 changing this parameter as memory usage will proportionally
6182 increase.
6183
6184 <size> is the maximum number of entries that can fit in the table. This
Cyril Bonté78caf842010-03-10 22:41:43 +01006185 value directly impacts memory usage. Count approximately
6186 50 bytes per entry, plus the size of a string if any. The size
6187 supports suffixes "k", "m", "g" for 2^10, 2^20 and 2^30 factors.
Willy Tarreaub937b7e2010-01-12 15:27:54 +01006188
6189 [nopurge] indicates that we refuse to purge older entries when the table
6190 is full. When not specified and the table is full when haproxy
6191 wants to store an entry in it, it will flush a few of the oldest
6192 entries in order to release some space for the new ones. This is
6193 most often the desired behaviour. In some specific cases, it
6194 be desirable to refuse new entries instead of purging the older
6195 ones. That may be the case when the amount of data to store is
6196 far above the hardware limits and we prefer not to offer access
6197 to new clients than to reject the ones already connected. When
6198 using this parameter, be sure to properly set the "expire"
6199 parameter (see below).
6200
Emeric Brunf099e792010-09-27 12:05:28 +02006201 <peersect> is the name of the peers section to use for replication. Entries
6202 which associate keys to server IDs are kept synchronized with
6203 the remote peers declared in this section. All entries are also
6204 automatically learned from the local peer (old process) during a
6205 soft restart.
6206
Cyril Bonté02ff8ef2010-12-14 22:48:49 +01006207 NOTE : peers can't be used in multi-process mode.
6208
Willy Tarreaub937b7e2010-01-12 15:27:54 +01006209 <expire> defines the maximum duration of an entry in the table since it
6210 was last created, refreshed or matched. The expiration delay is
6211 defined using the standard time format, similarly as the various
6212 timeouts. The maximum duration is slightly above 24 days. See
6213 section 2.2 for more information. If this delay is not specified,
Cyril Bontédc4d9032012-04-08 21:57:39 +02006214 the session won't automatically expire, but older entries will
Willy Tarreaub937b7e2010-01-12 15:27:54 +01006215 be removed once full. Be sure not to use the "nopurge" parameter
6216 if not expiration delay is specified.
6217
Willy Tarreau08d5f982010-06-06 13:34:54 +02006218 <data_type> is used to store additional information in the stick-table. This
6219 may be used by ACLs in order to control various criteria related
6220 to the activity of the client matching the stick-table. For each
6221 item specified here, the size of each entry will be inflated so
Willy Tarreauc9705a12010-07-27 20:05:50 +02006222 that the additional data can fit. Several data types may be
6223 stored with an entry. Multiple data types may be specified after
6224 the "store" keyword, as a comma-separated list. Alternatively,
6225 it is possible to repeat the "store" keyword followed by one or
6226 several data types. Except for the "server_id" type which is
6227 automatically detected and enabled, all data types must be
6228 explicitly declared to be stored. If an ACL references a data
6229 type which is not stored, the ACL will simply not match. Some
6230 data types require an argument which must be passed just after
6231 the type between parenthesis. See below for the supported data
6232 types and their arguments.
6233
6234 The data types that can be stored with an entry are the following :
6235 - server_id : this is an integer which holds the numeric ID of the server a
6236 request was assigned to. It is used by the "stick match", "stick store",
6237 and "stick on" rules. It is automatically enabled when referenced.
6238
6239 - gpc0 : first General Purpose Counter. It is a positive 32-bit integer
6240 integer which may be used for anything. Most of the time it will be used
6241 to put a special tag on some entries, for instance to note that a
6242 specific behaviour was detected and must be known for future matches.
6243
Willy Tarreauba2ffd12013-05-29 15:54:14 +02006244 - gpc0_rate(<period>) : increment rate of the first General Purpose Counter
6245 over a period. It is a positive 32-bit integer integer which may be used
6246 for anything. Just like <gpc0>, it counts events, but instead of keeping
6247 a cumulative count, it maintains the rate at which the counter is
6248 incremented. Most of the time it will be used to measure the frequency of
6249 occurrence of certain events (eg: requests to a specific URL).
6250
Willy Tarreauc9705a12010-07-27 20:05:50 +02006251 - conn_cnt : Connection Count. It is a positive 32-bit integer which counts
6252 the absolute number of connections received from clients which matched
6253 this entry. It does not mean the connections were accepted, just that
6254 they were received.
6255
6256 - conn_cur : Current Connections. It is a positive 32-bit integer which
6257 stores the concurrent connection counts for the entry. It is incremented
6258 once an incoming connection matches the entry, and decremented once the
6259 connection leaves. That way it is possible to know at any time the exact
6260 number of concurrent connections for an entry.
6261
6262 - conn_rate(<period>) : frequency counter (takes 12 bytes). It takes an
6263 integer parameter <period> which indicates in milliseconds the length
6264 of the period over which the average is measured. It reports the average
6265 incoming connection rate over that period, in connections per period. The
6266 result is an integer which can be matched using ACLs.
6267
6268 - sess_cnt : Session Count. It is a positive 32-bit integer which counts
6269 the absolute number of sessions received from clients which matched this
6270 entry. A session is a connection that was accepted by the layer 4 rules.
6271
6272 - sess_rate(<period>) : frequency counter (takes 12 bytes). It takes an
6273 integer parameter <period> which indicates in milliseconds the length
6274 of the period over which the average is measured. It reports the average
6275 incoming session rate over that period, in sessions per period. The
6276 result is an integer which can be matched using ACLs.
6277
6278 - http_req_cnt : HTTP request Count. It is a positive 32-bit integer which
6279 counts the absolute number of HTTP requests received from clients which
6280 matched this entry. It does not matter whether they are valid requests or
6281 not. Note that this is different from sessions when keep-alive is used on
6282 the client side.
6283
6284 - http_req_rate(<period>) : frequency counter (takes 12 bytes). It takes an
6285 integer parameter <period> which indicates in milliseconds the length
6286 of the period over which the average is measured. It reports the average
6287 HTTP request rate over that period, in requests per period. The result is
6288 an integer which can be matched using ACLs. It does not matter whether
6289 they are valid requests or not. Note that this is different from sessions
6290 when keep-alive is used on the client side.
6291
6292 - http_err_cnt : HTTP Error Count. It is a positive 32-bit integer which
6293 counts the absolute number of HTTP requests errors induced by clients
6294 which matched this entry. Errors are counted on invalid and truncated
6295 requests, as well as on denied or tarpitted requests, and on failed
6296 authentications. If the server responds with 4xx, then the request is
6297 also counted as an error since it's an error triggered by the client
6298 (eg: vulnerability scan).
6299
6300 - http_err_rate(<period>) : frequency counter (takes 12 bytes). It takes an
6301 integer parameter <period> which indicates in milliseconds the length
6302 of the period over which the average is measured. It reports the average
6303 HTTP request error rate over that period, in requests per period (see
6304 http_err_cnt above for what is accounted as an error). The result is an
6305 integer which can be matched using ACLs.
6306
6307 - bytes_in_cnt : client to server byte count. It is a positive 64-bit
6308 integer which counts the cumulated amount of bytes received from clients
6309 which matched this entry. Headers are included in the count. This may be
6310 used to limit abuse of upload features on photo or video servers.
6311
6312 - bytes_in_rate(<period>) : frequency counter (takes 12 bytes). It takes an
6313 integer parameter <period> which indicates in milliseconds the length
6314 of the period over which the average is measured. It reports the average
6315 incoming bytes rate over that period, in bytes per period. It may be used
6316 to detect users which upload too much and too fast. Warning: with large
6317 uploads, it is possible that the amount of uploaded data will be counted
6318 once upon termination, thus causing spikes in the average transfer speed
6319 instead of having a smooth one. This may partially be smoothed with
6320 "option contstats" though this is not perfect yet. Use of byte_in_cnt is
6321 recommended for better fairness.
6322
6323 - bytes_out_cnt : server to client byte count. It is a positive 64-bit
6324 integer which counts the cumulated amount of bytes sent to clients which
6325 matched this entry. Headers are included in the count. This may be used
6326 to limit abuse of bots sucking the whole site.
6327
6328 - bytes_out_rate(<period>) : frequency counter (takes 12 bytes). It takes
6329 an integer parameter <period> which indicates in milliseconds the length
6330 of the period over which the average is measured. It reports the average
6331 outgoing bytes rate over that period, in bytes per period. It may be used
6332 to detect users which download too much and too fast. Warning: with large
6333 transfers, it is possible that the amount of transferred data will be
6334 counted once upon termination, thus causing spikes in the average
6335 transfer speed instead of having a smooth one. This may partially be
6336 smoothed with "option contstats" though this is not perfect yet. Use of
6337 byte_out_cnt is recommended for better fairness.
Willy Tarreau08d5f982010-06-06 13:34:54 +02006338
Willy Tarreauc00cdc22010-06-06 16:48:26 +02006339 There is only one stick-table per proxy. At the moment of writing this doc,
6340 it does not seem useful to have multiple tables per proxy. If this happens
Willy Tarreaub937b7e2010-01-12 15:27:54 +01006341 to be required, simply create a dummy backend with a stick-table in it and
6342 reference it.
6343
6344 It is important to understand that stickiness based on learning information
6345 has some limitations, including the fact that all learned associations are
6346 lost upon restart. In general it can be good as a complement but not always
6347 as an exclusive stickiness.
6348
Willy Tarreauc9705a12010-07-27 20:05:50 +02006349 Last, memory requirements may be important when storing many data types.
6350 Indeed, storing all indicators above at once in each entry requires 116 bytes
6351 per entry, or 116 MB for a 1-million entries table. This is definitely not
6352 something that can be ignored.
6353
6354 Example:
6355 # Keep track of counters of up to 1 million IP addresses over 5 minutes
6356 # and store a general purpose counter and the average connection rate
6357 # computed over a sliding window of 30 seconds.
6358 stick-table type ip size 1m expire 5m store gpc0,conn_rate(30s)
6359
6360 See also : "stick match", "stick on", "stick store-request", section 2.2
David du Colombiera13d1b92011-03-17 10:40:22 +01006361 about time format and section 7 about ACLs.
Willy Tarreaub937b7e2010-01-12 15:27:54 +01006362
6363
Emeric Brun6a1cefa2010-09-24 18:15:17 +02006364stick store-response <pattern> [table <table>] [{if | unless} <condition>]
6365 Define a request pattern used to create an entry in a stickiness table
6366 May be used in sections : defaults | frontend | listen | backend
6367 no | no | yes | yes
6368
6369 Arguments :
Willy Tarreau74ca5042013-06-11 23:12:07 +02006370 <pattern> is a pattern extraction rule as described in section 7.3. It
Emeric Brun6a1cefa2010-09-24 18:15:17 +02006371 describes what elements of the response or connection will
6372 be analysed, extracted and stored in the table once a
6373 server is selected.
6374
6375 <table> is an optional stickiness table name. If unspecified, the same
6376 backend's table is used. A stickiness table is declared using
6377 the "stick-table" statement.
6378
6379 <cond> is an optional storage condition. It makes it possible to store
6380 certain criteria only when some conditions are met (or not met).
6381 For instance, it could be used to store the SSL session ID only
6382 when the response is a SSL server hello.
6383
6384 Some protocols or applications require complex stickiness rules and cannot
6385 always simply rely on cookies nor hashing. The "stick store-response"
6386 statement describes a rule to decide what to extract from the response and
6387 when to do it, in order to store it into a stickiness table for further
6388 requests to match it using the "stick match" statement. Obviously the
6389 extracted part must make sense and have a chance to be matched in a further
Cyril Bonté108cf6e2012-04-21 23:30:29 +02006390 request. Storing an ID found in a header of a response makes sense.
Emeric Brun6a1cefa2010-09-24 18:15:17 +02006391 See section 7 for a complete list of possible patterns and transformation
6392 rules.
6393
6394 The table has to be declared using the "stick-table" statement. It must be of
6395 a type compatible with the pattern. By default it is the one which is present
6396 in the same backend. It is possible to share a table with other backends by
6397 referencing it using the "table" keyword. If another table is referenced,
6398 the server's ID inside the backends are used. By default, all server IDs
6399 start at 1 in each backend, so the server ordering is enough. But in case of
6400 doubt, it is highly recommended to force server IDs using their "id" setting.
6401
6402 It is possible to restrict the conditions where a "stick store-response"
6403 statement will apply, using "if" or "unless" followed by a condition. This
6404 condition will be evaluated while parsing the response, so any criteria can
6405 be used. See section 7 for ACL based conditions.
6406
6407 There is no limit on the number of "stick store-response" statements, but
6408 there is a limit of 8 simultaneous stores per request or response. This
6409 makes it possible to store up to 8 criteria, all extracted from either the
6410 request or the response, regardless of the number of rules. Only the 8 first
6411 ones which match will be kept. Using this, it is possible to feed multiple
6412 tables at once in the hope to increase the chance to recognize a user on
6413 another protocol or access method.
6414
6415 The table will contain the real server that processed the request.
6416
6417 Example :
6418 # Learn SSL session ID from both request and response and create affinity.
6419 backend https
6420 mode tcp
6421 balance roundrobin
Cyril Bontédc4d9032012-04-08 21:57:39 +02006422 # maximum SSL session ID length is 32 bytes.
Emeric Brun6a1cefa2010-09-24 18:15:17 +02006423 stick-table type binary len 32 size 30k expire 30m
Cyril Bonté108cf6e2012-04-21 23:30:29 +02006424
Emeric Brun6a1cefa2010-09-24 18:15:17 +02006425 acl clienthello req_ssl_hello_type 1
6426 acl serverhello rep_ssl_hello_type 2
6427
6428 # use tcp content accepts to detects ssl client and server hello.
6429 tcp-request inspect-delay 5s
6430 tcp-request content accept if clienthello
6431
6432 # no timeout on response inspect delay by default.
6433 tcp-response content accept if serverhello
Cyril Bonté108cf6e2012-04-21 23:30:29 +02006434
Emeric Brun6a1cefa2010-09-24 18:15:17 +02006435 # SSL session ID (SSLID) may be present on a client or server hello.
6436 # Its length is coded on 1 byte at offset 43 and its value starts
6437 # at offset 44.
6438
6439 # Match and learn on request if client hello.
6440 stick on payload_lv(43,1) if clienthello
6441
6442 # Learn on response if server hello.
6443 stick store-response payload_lv(43,1) if serverhello
Cyril Bontédc4d9032012-04-08 21:57:39 +02006444
Emeric Brun6a1cefa2010-09-24 18:15:17 +02006445 server s1 192.168.1.1:443
6446 server s2 192.168.1.1:443
6447
6448 See also : "stick-table", "stick on", and section 7 about ACLs and pattern
6449 extraction.
6450
6451
Willy Tarreaue9656522010-08-17 15:40:09 +02006452tcp-request connection <action> [{if | unless} <condition>]
6453 Perform an action on an incoming connection depending on a layer 4 condition
Willy Tarreau1a687942010-05-23 22:40:30 +02006454 May be used in sections : defaults | frontend | listen | backend
6455 no | yes | yes | no
Willy Tarreaue9656522010-08-17 15:40:09 +02006456 Arguments :
6457 <action> defines the action to perform if the condition applies. Valid
Willy Tarreaube4a3ef2013-06-17 15:04:07 +02006458 actions include : "accept", "reject", "track-sc0", "track-sc1",
6459 "track-sc2", and "expect-proxy". See below for more details.
Willy Tarreau1a687942010-05-23 22:40:30 +02006460
Willy Tarreaue9656522010-08-17 15:40:09 +02006461 <condition> is a standard layer4-only ACL-based condition (see section 7).
Willy Tarreau68c03ab2010-08-06 15:08:45 +02006462
6463 Immediately after acceptance of a new incoming connection, it is possible to
6464 evaluate some conditions to decide whether this connection must be accepted
Willy Tarreaue9656522010-08-17 15:40:09 +02006465 or dropped or have its counters tracked. Those conditions cannot make use of
6466 any data contents because the connection has not been read from yet, and the
6467 buffers are not yet allocated. This is used to selectively and very quickly
6468 accept or drop connections from various sources with a very low overhead. If
6469 some contents need to be inspected in order to take the decision, the
6470 "tcp-request content" statements must be used instead.
Willy Tarreau68c03ab2010-08-06 15:08:45 +02006471
Willy Tarreaue9656522010-08-17 15:40:09 +02006472 The "tcp-request connection" rules are evaluated in their exact declaration
6473 order. If no rule matches or if there is no rule, the default action is to
6474 accept the incoming connection. There is no specific limit to the number of
6475 rules which may be inserted.
Willy Tarreau68c03ab2010-08-06 15:08:45 +02006476
Willy Tarreaue9656522010-08-17 15:40:09 +02006477 Three types of actions are supported :
6478 - accept :
6479 accepts the connection if the condition is true (when used with "if")
6480 or false (when used with "unless"). The first such rule executed ends
6481 the rules evaluation.
Willy Tarreau68c03ab2010-08-06 15:08:45 +02006482
Willy Tarreaue9656522010-08-17 15:40:09 +02006483 - reject :
6484 rejects the connection if the condition is true (when used with "if")
6485 or false (when used with "unless"). The first such rule executed ends
6486 the rules evaluation. Rejected connections do not even become a
6487 session, which is why they are accounted separately for in the stats,
6488 as "denied connections". They are not considered for the session
6489 rate-limit and are not logged either. The reason is that these rules
6490 should only be used to filter extremely high connection rates such as
6491 the ones encountered during a massive DDoS attack. Under these extreme
6492 conditions, the simple action of logging each event would make the
6493 system collapse and would considerably lower the filtering capacity. If
6494 logging is absolutely desired, then "tcp-request content" rules should
6495 be used instead.
Willy Tarreau68c03ab2010-08-06 15:08:45 +02006496
Willy Tarreau4f0d9192013-06-11 20:40:55 +02006497 - expect-proxy layer4 :
6498 configures the client-facing connection to receive a PROXY protocol
6499 header before any byte is read from the socket. This is equivalent to
6500 having the "accept-proxy" keyword on the "bind" line, except that using
6501 the TCP rule allows the PROXY protocol to be accepted only for certain
6502 IP address ranges using an ACL. This is convenient when multiple layers
6503 of load balancers are passed through by traffic coming from public
6504 hosts.
6505
Willy Tarreaube4a3ef2013-06-17 15:04:07 +02006506 - { track-sc0 | track-sc1 | track-sc2 } <key> [table <table>] :
Willy Tarreaue9656522010-08-17 15:40:09 +02006507 enables tracking of sticky counters from current connection. These
6508 rules do not stop evaluation and do not change default action. Two sets
6509 of counters may be simultaneously tracked by the same connection. The
Willy Tarreaube4a3ef2013-06-17 15:04:07 +02006510 first "track-sc0" rule executed enables tracking of the counters of the
6511 specified table as the first set. The first "track-sc1" rule executed
Willy Tarreaue9656522010-08-17 15:40:09 +02006512 enables tracking of the counters of the specified table as the second
Willy Tarreaube4a3ef2013-06-17 15:04:07 +02006513 set. The first "track-sc2" rule executed enables tracking of the
6514 counters of the specified table as the third set. It is a recommended
6515 practice to use the first set of counters for the per-frontend counters
6516 and the second set for the per-backend ones. But this is just a
6517 guideline, all may be used everywhere.
Willy Tarreau68c03ab2010-08-06 15:08:45 +02006518
Willy Tarreaue9656522010-08-17 15:40:09 +02006519 These actions take one or two arguments :
Willy Tarreau5d5b5d82012-12-09 12:00:04 +01006520 <key> is mandatory, and is a pattern extraction rule as described
Willy Tarreau74ca5042013-06-11 23:12:07 +02006521 in section 7.3. It describes what elements of the incoming
Willy Tarreau5d5b5d82012-12-09 12:00:04 +01006522 request or connection will be analysed, extracted, combined,
6523 and used to select which table entry to update the counters.
6524 Note that "tcp-request connection" cannot use content-based
6525 fetches.
Willy Tarreau68c03ab2010-08-06 15:08:45 +02006526
Willy Tarreaue9656522010-08-17 15:40:09 +02006527 <table> is an optional table to be used instead of the default one,
6528 which is the stick-table declared in the current proxy. All
6529 the counters for the matches and updates for the key will
6530 then be performed in that table until the session ends.
Willy Tarreau68c03ab2010-08-06 15:08:45 +02006531
Willy Tarreaue9656522010-08-17 15:40:09 +02006532 Once a "track-sc*" rule is executed, the key is looked up in the table
6533 and if it is not found, an entry is allocated for it. Then a pointer to
6534 that entry is kept during all the session's life, and this entry's
6535 counters are updated as often as possible, every time the session's
6536 counters are updated, and also systematically when the session ends.
Willy Tarreau5d5b5d82012-12-09 12:00:04 +01006537 Counters are only updated for events that happen after the tracking has
6538 been started. For example, connection counters will not be updated when
6539 tracking layer 7 information, since the connection event happens before
6540 layer7 information is extracted.
6541
Willy Tarreaue9656522010-08-17 15:40:09 +02006542 If the entry tracks concurrent connection counters, one connection is
6543 counted for as long as the entry is tracked, and the entry will not
6544 expire during that time. Tracking counters also provides a performance
6545 advantage over just checking the keys, because only one table lookup is
6546 performed for all ACL checks that make use of it.
Willy Tarreau68c03ab2010-08-06 15:08:45 +02006547
Willy Tarreaue9656522010-08-17 15:40:09 +02006548 Note that the "if/unless" condition is optional. If no condition is set on
6549 the action, it is simply performed unconditionally. That can be useful for
6550 "track-sc*" actions as well as for changing the default action to a reject.
Willy Tarreau68c03ab2010-08-06 15:08:45 +02006551
Willy Tarreaue9656522010-08-17 15:40:09 +02006552 Example: accept all connections from white-listed hosts, reject too fast
6553 connection without counting them, and track accepted connections.
6554 This results in connection rate being capped from abusive sources.
Willy Tarreau68c03ab2010-08-06 15:08:45 +02006555
Willy Tarreaue9656522010-08-17 15:40:09 +02006556 tcp-request connection accept if { src -f /etc/haproxy/whitelist.lst }
Willy Tarreau68c03ab2010-08-06 15:08:45 +02006557 tcp-request connection reject if { src_conn_rate gt 10 }
Willy Tarreaube4a3ef2013-06-17 15:04:07 +02006558 tcp-request connection track-sc0 src
Willy Tarreau68c03ab2010-08-06 15:08:45 +02006559
Willy Tarreaue9656522010-08-17 15:40:09 +02006560 Example: accept all connections from white-listed hosts, count all other
6561 connections and reject too fast ones. This results in abusive ones
6562 being blocked as long as they don't slow down.
Willy Tarreau68c03ab2010-08-06 15:08:45 +02006563
Willy Tarreaue9656522010-08-17 15:40:09 +02006564 tcp-request connection accept if { src -f /etc/haproxy/whitelist.lst }
Willy Tarreaube4a3ef2013-06-17 15:04:07 +02006565 tcp-request connection track-sc0 src
6566 tcp-request connection reject if { sc0_conn_rate gt 10 }
Willy Tarreau68c03ab2010-08-06 15:08:45 +02006567
Willy Tarreau4f0d9192013-06-11 20:40:55 +02006568 Example: enable the PROXY protocol for traffic coming from all known proxies.
6569
6570 tcp-request connection expect-proxy layer4 if { src -f proxies.lst }
6571
Willy Tarreau68c03ab2010-08-06 15:08:45 +02006572 See section 7 about ACL usage.
6573
Willy Tarreaue9656522010-08-17 15:40:09 +02006574 See also : "tcp-request content", "stick-table"
Willy Tarreau68c03ab2010-08-06 15:08:45 +02006575
6576
Willy Tarreaue9656522010-08-17 15:40:09 +02006577tcp-request content <action> [{if | unless} <condition>]
6578 Perform an action on a new session depending on a layer 4-7 condition
Willy Tarreau62644772008-07-16 18:36:06 +02006579 May be used in sections : defaults | frontend | listen | backend
Willy Tarreaufb356202010-08-03 14:02:05 +02006580 no | yes | yes | yes
Willy Tarreaue9656522010-08-17 15:40:09 +02006581 Arguments :
6582 <action> defines the action to perform if the condition applies. Valid
Willy Tarreaube4a3ef2013-06-17 15:04:07 +02006583 actions include : "accept", "reject", "track-sc0", "track-sc1",
6584 and "track-sc2". See "tcp-request connection" above for their
Willy Tarreaue25c9172013-05-28 18:32:20 +02006585 signification.
Willy Tarreau62644772008-07-16 18:36:06 +02006586
Willy Tarreaue9656522010-08-17 15:40:09 +02006587 <condition> is a standard layer 4-7 ACL-based condition (see section 7).
Willy Tarreau62644772008-07-16 18:36:06 +02006588
Willy Tarreaue9656522010-08-17 15:40:09 +02006589 A request's contents can be analysed at an early stage of request processing
6590 called "TCP content inspection". During this stage, ACL-based rules are
6591 evaluated every time the request contents are updated, until either an
6592 "accept" or a "reject" rule matches, or the TCP request inspection delay
6593 expires with no matching rule.
Willy Tarreau62644772008-07-16 18:36:06 +02006594
Willy Tarreaue9656522010-08-17 15:40:09 +02006595 The first difference between these rules and "tcp-request connection" rules
6596 is that "tcp-request content" rules can make use of contents to take a
6597 decision. Most often, these decisions will consider a protocol recognition or
6598 validity. The second difference is that content-based rules can be used in
6599 both frontends and backends. In frontends, they will be evaluated upon new
6600 connections. In backends, they will be evaluated once a session is assigned
6601 a backend. This means that a single frontend connection may be evaluated
6602 several times by one or multiple backends when a session gets reassigned
6603 (for instance after a client-side HTTP keep-alive request).
Willy Tarreau62644772008-07-16 18:36:06 +02006604
Willy Tarreaue9656522010-08-17 15:40:09 +02006605 Content-based rules are evaluated in their exact declaration order. If no
6606 rule matches or if there is no rule, the default action is to accept the
6607 contents. There is no specific limit to the number of rules which may be
6608 inserted.
Willy Tarreau62644772008-07-16 18:36:06 +02006609
Willy Tarreaue9656522010-08-17 15:40:09 +02006610 Three types of actions are supported :
6611 - accept :
6612 - reject :
Willy Tarreaube4a3ef2013-06-17 15:04:07 +02006613 - { track-sc0 | track-sc1 | track-sc2 } <key> [table <table>]
Willy Tarreau62644772008-07-16 18:36:06 +02006614
Willy Tarreaue9656522010-08-17 15:40:09 +02006615 They have the same meaning as their counter-parts in "tcp-request connection"
6616 so please refer to that section for a complete description.
Willy Tarreau62644772008-07-16 18:36:06 +02006617
Willy Tarreaue9656522010-08-17 15:40:09 +02006618 Also, it is worth noting that if sticky counters are tracked from a rule
6619 defined in a backend, this tracking will automatically end when the session
6620 releases the backend. That allows per-backend counter tracking even in case
Willy Tarreau5d5b5d82012-12-09 12:00:04 +01006621 of HTTP keep-alive requests when the backend changes. This makes a subtle
6622 difference because tracking rules in "frontend" and "listen" section last for
6623 all the session, as opposed to the backend rules. The difference appears when
6624 some layer 7 information is tracked. While there is nothing mandatory about
Willy Tarreaube4a3ef2013-06-17 15:04:07 +02006625 it, it is recommended to use the track-sc0 pointer to track per-frontend
6626 counters and track-sc1 to track per-backend counters, but this is just a
Willy Tarreaue25c9172013-05-28 18:32:20 +02006627 guideline and all counters may be used everywhere.
Willy Tarreau62644772008-07-16 18:36:06 +02006628
Krzysztof Piotr Oledzkif8645332009-12-13 21:55:50 +01006629 Note that the "if/unless" condition is optional. If no condition is set on
Willy Tarreaue9656522010-08-17 15:40:09 +02006630 the action, it is simply performed unconditionally. That can be useful for
6631 "track-sc*" actions as well as for changing the default action to a reject.
Willy Tarreau62644772008-07-16 18:36:06 +02006632
Willy Tarreaue9656522010-08-17 15:40:09 +02006633 It is perfectly possible to match layer 7 contents with "tcp-request content"
Willy Tarreauc0239e02012-04-16 14:42:55 +02006634 rules, since HTTP-specific ACL matches are able to preliminarily parse the
6635 contents of a buffer before extracting the required data. If the buffered
6636 contents do not parse as a valid HTTP message, then the ACL does not match.
6637 The parser which is involved there is exactly the same as for all other HTTP
6638 processing, so there is no risk of parsing something differently.
Willy Tarreau62644772008-07-16 18:36:06 +02006639
Willy Tarreau5d5b5d82012-12-09 12:00:04 +01006640 Tracking layer7 information is also possible provided that the information
6641 are present when the rule is processed. The current solution for making the
6642 rule engine wait for such information is to set an inspect delay and to
6643 condition its execution with an ACL relying on such information.
6644
Willy Tarreau62644772008-07-16 18:36:06 +02006645 Example:
Willy Tarreaue9656522010-08-17 15:40:09 +02006646 # Accept HTTP requests containing a Host header saying "example.com"
6647 # and reject everything else.
6648 acl is_host_com hdr(Host) -i example.com
6649 tcp-request inspect-delay 30s
Willy Tarreauc0239e02012-04-16 14:42:55 +02006650 tcp-request content accept if is_host_com
Willy Tarreaue9656522010-08-17 15:40:09 +02006651 tcp-request content reject
6652
6653 Example:
Willy Tarreau62644772008-07-16 18:36:06 +02006654 # reject SMTP connection if client speaks first
6655 tcp-request inspect-delay 30s
6656 acl content_present req_len gt 0
Willy Tarreau68c03ab2010-08-06 15:08:45 +02006657 tcp-request content reject if content_present
Willy Tarreau62644772008-07-16 18:36:06 +02006658
6659 # Forward HTTPS connection only if client speaks
6660 tcp-request inspect-delay 30s
6661 acl content_present req_len gt 0
Willy Tarreau68c03ab2010-08-06 15:08:45 +02006662 tcp-request content accept if content_present
Willy Tarreaue9656522010-08-17 15:40:09 +02006663 tcp-request content reject
6664
Willy Tarreau5d5b5d82012-12-09 12:00:04 +01006665 Example:
6666 # Track the last IP from X-Forwarded-For
6667 tcp-request inspect-delay 10s
Willy Tarreaube4a3ef2013-06-17 15:04:07 +02006668 tcp-request content track-sc0 hdr(x-forwarded-for,-1) if HTTP
Willy Tarreau5d5b5d82012-12-09 12:00:04 +01006669
6670 Example:
6671 # track request counts per "base" (concatenation of Host+URL)
6672 tcp-request inspect-delay 10s
Willy Tarreaube4a3ef2013-06-17 15:04:07 +02006673 tcp-request content track-sc0 base table req-rate if HTTP
Willy Tarreau5d5b5d82012-12-09 12:00:04 +01006674
Willy Tarreaue9656522010-08-17 15:40:09 +02006675 Example: track per-frontend and per-backend counters, block abusers at the
6676 frontend when the backend detects abuse.
6677
6678 frontend http
Willy Tarreaube4a3ef2013-06-17 15:04:07 +02006679 # Use General Purpose Couter 0 in SC0 as a global abuse counter
Willy Tarreaue9656522010-08-17 15:40:09 +02006680 # protecting all our sites
6681 stick-table type ip size 1m expire 5m store gpc0
Willy Tarreaube4a3ef2013-06-17 15:04:07 +02006682 tcp-request connection track-sc0 src
6683 tcp-request connection reject if { sc0_get_gpc0 gt 0 }
Willy Tarreaue9656522010-08-17 15:40:09 +02006684 ...
6685 use_backend http_dynamic if { path_end .php }
6686
6687 backend http_dynamic
6688 # if a source makes too fast requests to this dynamic site (tracked
Willy Tarreaube4a3ef2013-06-17 15:04:07 +02006689 # by SC1), block it globally in the frontend.
Willy Tarreaue9656522010-08-17 15:40:09 +02006690 stick-table type ip size 1m expire 5m store http_req_rate(10s)
Willy Tarreaube4a3ef2013-06-17 15:04:07 +02006691 acl click_too_fast sc1_http_req_rate gt 10
6692 acl mark_as_abuser sc0_inc_gpc0 gt 0
6693 tcp-request content track-sc1 src
Willy Tarreaue9656522010-08-17 15:40:09 +02006694 tcp-request content reject if click_too_fast mark_as_abuser
Willy Tarreau62644772008-07-16 18:36:06 +02006695
Willy Tarreauc57f0e22009-05-10 13:12:33 +02006696 See section 7 about ACL usage.
Willy Tarreau62644772008-07-16 18:36:06 +02006697
Willy Tarreaue9656522010-08-17 15:40:09 +02006698 See also : "tcp-request connection", "tcp-request inspect-delay"
Willy Tarreau62644772008-07-16 18:36:06 +02006699
6700
6701tcp-request inspect-delay <timeout>
6702 Set the maximum allowed time to wait for data during content inspection
6703 May be used in sections : defaults | frontend | listen | backend
Willy Tarreaufb356202010-08-03 14:02:05 +02006704 no | yes | yes | yes
Willy Tarreau62644772008-07-16 18:36:06 +02006705 Arguments :
6706 <timeout> is the timeout value specified in milliseconds by default, but
6707 can be in any other unit if the number is suffixed by the unit,
6708 as explained at the top of this document.
6709
6710 People using haproxy primarily as a TCP relay are often worried about the
6711 risk of passing any type of protocol to a server without any analysis. In
6712 order to be able to analyze the request contents, we must first withhold
6713 the data then analyze them. This statement simply enables withholding of
6714 data for at most the specified amount of time.
6715
Willy Tarreaufb356202010-08-03 14:02:05 +02006716 TCP content inspection applies very early when a connection reaches a
6717 frontend, then very early when the connection is forwarded to a backend. This
6718 means that a connection may experience a first delay in the frontend and a
6719 second delay in the backend if both have tcp-request rules.
6720
Willy Tarreau62644772008-07-16 18:36:06 +02006721 Note that when performing content inspection, haproxy will evaluate the whole
6722 rules for every new chunk which gets in, taking into account the fact that
Krzysztof Piotr Oledzkif8645332009-12-13 21:55:50 +01006723 those data are partial. If no rule matches before the aforementioned delay,
Willy Tarreau62644772008-07-16 18:36:06 +02006724 a last check is performed upon expiration, this time considering that the
Willy Tarreaud869b242009-03-15 14:43:58 +01006725 contents are definitive. If no delay is set, haproxy will not wait at all
6726 and will immediately apply a verdict based on the available information.
6727 Obviously this is unlikely to be very useful and might even be racy, so such
6728 setups are not recommended.
Willy Tarreau62644772008-07-16 18:36:06 +02006729
6730 As soon as a rule matches, the request is released and continues as usual. If
6731 the timeout is reached and no rule matches, the default policy will be to let
6732 it pass through unaffected.
6733
6734 For most protocols, it is enough to set it to a few seconds, as most clients
6735 send the full request immediately upon connection. Add 3 or more seconds to
6736 cover TCP retransmits but that's all. For some protocols, it may make sense
Willy Tarreaud72758d2010-01-12 10:42:19 +01006737 to use large values, for instance to ensure that the client never talks
Willy Tarreau62644772008-07-16 18:36:06 +02006738 before the server (eg: SMTP), or to wait for a client to talk before passing
6739 data to the server (eg: SSL). Note that the client timeout must cover at
Willy Tarreaub824b002010-09-29 16:36:16 +02006740 least the inspection delay, otherwise it will expire first. If the client
6741 closes the connection or if the buffer is full, the delay immediately expires
6742 since the contents will not be able to change anymore.
Willy Tarreau62644772008-07-16 18:36:06 +02006743
Willy Tarreau55165fe2009-05-10 12:02:55 +02006744 See also : "tcp-request content accept", "tcp-request content reject",
Willy Tarreau62644772008-07-16 18:36:06 +02006745 "timeout client".
6746
6747
Emeric Brun0a3b67f2010-09-24 15:34:53 +02006748tcp-response content <action> [{if | unless} <condition>]
6749 Perform an action on a session response depending on a layer 4-7 condition
6750 May be used in sections : defaults | frontend | listen | backend
6751 no | no | yes | yes
6752 Arguments :
6753 <action> defines the action to perform if the condition applies. Valid
Willy Tarreaucc1e04b2013-09-11 23:20:29 +02006754 actions include : "accept", "close", "reject".
Emeric Brun0a3b67f2010-09-24 15:34:53 +02006755
6756 <condition> is a standard layer 4-7 ACL-based condition (see section 7).
6757
6758 Response contents can be analysed at an early stage of response processing
6759 called "TCP content inspection". During this stage, ACL-based rules are
6760 evaluated every time the response contents are updated, until either an
Willy Tarreaucc1e04b2013-09-11 23:20:29 +02006761 "accept", "close" or a "reject" rule matches, or a TCP response inspection
6762 delay is set and expires with no matching rule.
Emeric Brun0a3b67f2010-09-24 15:34:53 +02006763
6764 Most often, these decisions will consider a protocol recognition or validity.
6765
6766 Content-based rules are evaluated in their exact declaration order. If no
6767 rule matches or if there is no rule, the default action is to accept the
6768 contents. There is no specific limit to the number of rules which may be
6769 inserted.
6770
6771 Two types of actions are supported :
6772 - accept :
6773 accepts the response if the condition is true (when used with "if")
6774 or false (when used with "unless"). The first such rule executed ends
6775 the rules evaluation.
6776
Willy Tarreaucc1e04b2013-09-11 23:20:29 +02006777 - close :
6778 immediately closes the connection with the server if the condition is
6779 true (when used with "if"), or false (when used with "unless"). The
6780 first such rule executed ends the rules evaluation. The main purpose of
6781 this action is to force a connection to be finished between a client
6782 and a server after an exchange when the application protocol expects
6783 some long time outs to elapse first. The goal is to eliminate idle
6784 connections which take signifiant resources on servers with certain
6785 protocols.
6786
Emeric Brun0a3b67f2010-09-24 15:34:53 +02006787 - reject :
6788 rejects the response if the condition is true (when used with "if")
6789 or false (when used with "unless"). The first such rule executed ends
Jamie Gloudonaaa21002012-08-25 00:18:33 -04006790 the rules evaluation. Rejected session are immediately closed.
Emeric Brun0a3b67f2010-09-24 15:34:53 +02006791
6792 Note that the "if/unless" condition is optional. If no condition is set on
6793 the action, it is simply performed unconditionally. That can be useful for
6794 for changing the default action to a reject.
6795
Jamie Gloudonaaa21002012-08-25 00:18:33 -04006796 It is perfectly possible to match layer 7 contents with "tcp-response
6797 content" rules, but then it is important to ensure that a full response has
6798 been buffered, otherwise no contents will match. In order to achieve this,
6799 the best solution involves detecting the HTTP protocol during the inspection
Emeric Brun0a3b67f2010-09-24 15:34:53 +02006800 period.
6801
6802 See section 7 about ACL usage.
6803
6804 See also : "tcp-request content", "tcp-response inspect-delay"
6805
6806
6807tcp-response inspect-delay <timeout>
6808 Set the maximum allowed time to wait for a response during content inspection
6809 May be used in sections : defaults | frontend | listen | backend
6810 no | no | yes | yes
6811 Arguments :
6812 <timeout> is the timeout value specified in milliseconds by default, but
6813 can be in any other unit if the number is suffixed by the unit,
6814 as explained at the top of this document.
6815
6816 See also : "tcp-response content", "tcp-request inspect-delay".
6817
6818
Krzysztof Piotr Oledzki5259dfe2008-01-21 01:54:06 +01006819timeout check <timeout>
6820 Set additional check timeout, but only after a connection has been already
6821 established.
6822
6823 May be used in sections: defaults | frontend | listen | backend
6824 yes | no | yes | yes
6825 Arguments:
6826 <timeout> is the timeout value specified in milliseconds by default, but
6827 can be in any other unit if the number is suffixed by the unit,
6828 as explained at the top of this document.
6829
6830 If set, haproxy uses min("timeout connect", "inter") as a connect timeout
6831 for check and "timeout check" as an additional read timeout. The "min" is
6832 used so that people running with *very* long "timeout connect" (eg. those
6833 who needed this due to the queue or tarpit) do not slow down their checks.
Willy Tarreaud7550a22010-02-10 05:10:19 +01006834 (Please also note that there is no valid reason to have such long connect
6835 timeouts, because "timeout queue" and "timeout tarpit" can always be used to
6836 avoid that).
Krzysztof Piotr Oledzki5259dfe2008-01-21 01:54:06 +01006837
6838 If "timeout check" is not set haproxy uses "inter" for complete check
6839 timeout (connect + read) exactly like all <1.3.15 version.
6840
6841 In most cases check request is much simpler and faster to handle than normal
6842 requests and people may want to kick out laggy servers so this timeout should
Willy Tarreau41a340d2008-01-22 12:25:31 +01006843 be smaller than "timeout server".
Krzysztof Piotr Oledzki5259dfe2008-01-21 01:54:06 +01006844
6845 This parameter is specific to backends, but can be specified once for all in
6846 "defaults" sections. This is in fact one of the easiest solutions not to
6847 forget about it.
6848
Willy Tarreau41a340d2008-01-22 12:25:31 +01006849 See also: "timeout connect", "timeout queue", "timeout server",
6850 "timeout tarpit".
Krzysztof Piotr Oledzki5259dfe2008-01-21 01:54:06 +01006851
6852
Willy Tarreau0ba27502007-12-24 16:55:16 +01006853timeout client <timeout>
6854timeout clitimeout <timeout> (deprecated)
6855 Set the maximum inactivity time on the client side.
6856 May be used in sections : defaults | frontend | listen | backend
6857 yes | yes | yes | no
6858 Arguments :
Willy Tarreau844e3c52008-01-11 16:28:18 +01006859 <timeout> is the timeout value specified in milliseconds by default, but
Willy Tarreau0ba27502007-12-24 16:55:16 +01006860 can be in any other unit if the number is suffixed by the unit,
6861 as explained at the top of this document.
6862
6863 The inactivity timeout applies when the client is expected to acknowledge or
6864 send data. In HTTP mode, this timeout is particularly important to consider
6865 during the first phase, when the client sends the request, and during the
6866 response while it is reading data sent by the server. The value is specified
6867 in milliseconds by default, but can be in any other unit if the number is
6868 suffixed by the unit, as specified at the top of this document. In TCP mode
6869 (and to a lesser extent, in HTTP mode), it is highly recommended that the
6870 client timeout remains equal to the server timeout in order to avoid complex
Willy Tarreaud2a4aa22008-01-31 15:28:22 +01006871 situations to debug. It is a good practice to cover one or several TCP packet
Willy Tarreau0ba27502007-12-24 16:55:16 +01006872 losses by specifying timeouts that are slightly above multiples of 3 seconds
Willy Tarreauce887fd2012-05-12 12:50:00 +02006873 (eg: 4 or 5 seconds). If some long-lived sessions are mixed with short-lived
6874 sessions (eg: WebSocket and HTTP), it's worth considering "timeout tunnel",
6875 which overrides "timeout client" and "timeout server" for tunnels.
Willy Tarreau0ba27502007-12-24 16:55:16 +01006876
6877 This parameter is specific to frontends, but can be specified once for all in
6878 "defaults" sections. This is in fact one of the easiest solutions not to
6879 forget about it. An unspecified timeout results in an infinite timeout, which
6880 is not recommended. Such a usage is accepted and works but reports a warning
6881 during startup because it may results in accumulation of expired sessions in
6882 the system if the system's timeouts are not configured either.
6883
6884 This parameter replaces the old, deprecated "clitimeout". It is recommended
6885 to use it to write new configurations. The form "timeout clitimeout" is
6886 provided only by backwards compatibility but its use is strongly discouraged.
6887
Willy Tarreauce887fd2012-05-12 12:50:00 +02006888 See also : "clitimeout", "timeout server", "timeout tunnel".
Willy Tarreau0ba27502007-12-24 16:55:16 +01006889
6890
6891timeout connect <timeout>
6892timeout contimeout <timeout> (deprecated)
6893 Set the maximum time to wait for a connection attempt to a server to succeed.
6894 May be used in sections : defaults | frontend | listen | backend
6895 yes | no | yes | yes
6896 Arguments :
Willy Tarreau844e3c52008-01-11 16:28:18 +01006897 <timeout> is the timeout value specified in milliseconds by default, but
Willy Tarreau0ba27502007-12-24 16:55:16 +01006898 can be in any other unit if the number is suffixed by the unit,
6899 as explained at the top of this document.
6900
6901 If the server is located on the same LAN as haproxy, the connection should be
Willy Tarreaud2a4aa22008-01-31 15:28:22 +01006902 immediate (less than a few milliseconds). Anyway, it is a good practice to
Willy Tarreaud72758d2010-01-12 10:42:19 +01006903 cover one or several TCP packet losses by specifying timeouts that are
Willy Tarreau0ba27502007-12-24 16:55:16 +01006904 slightly above multiples of 3 seconds (eg: 4 or 5 seconds). By default, the
Krzysztof Piotr Oledzki5259dfe2008-01-21 01:54:06 +01006905 connect timeout also presets both queue and tarpit timeouts to the same value
6906 if these have not been specified.
Willy Tarreau0ba27502007-12-24 16:55:16 +01006907
6908 This parameter is specific to backends, but can be specified once for all in
6909 "defaults" sections. This is in fact one of the easiest solutions not to
6910 forget about it. An unspecified timeout results in an infinite timeout, which
6911 is not recommended. Such a usage is accepted and works but reports a warning
6912 during startup because it may results in accumulation of failed sessions in
6913 the system if the system's timeouts are not configured either.
6914
6915 This parameter replaces the old, deprecated "contimeout". It is recommended
6916 to use it to write new configurations. The form "timeout contimeout" is
6917 provided only by backwards compatibility but its use is strongly discouraged.
6918
Willy Tarreau41a340d2008-01-22 12:25:31 +01006919 See also: "timeout check", "timeout queue", "timeout server", "contimeout",
6920 "timeout tarpit".
Willy Tarreau0ba27502007-12-24 16:55:16 +01006921
6922
Willy Tarreaub16a5742010-01-10 14:46:16 +01006923timeout http-keep-alive <timeout>
6924 Set the maximum allowed time to wait for a new HTTP request to appear
6925 May be used in sections : defaults | frontend | listen | backend
6926 yes | yes | yes | yes
6927 Arguments :
6928 <timeout> is the timeout value specified in milliseconds by default, but
6929 can be in any other unit if the number is suffixed by the unit,
6930 as explained at the top of this document.
6931
6932 By default, the time to wait for a new request in case of keep-alive is set
6933 by "timeout http-request". However this is not always convenient because some
6934 people want very short keep-alive timeouts in order to release connections
6935 faster, and others prefer to have larger ones but still have short timeouts
6936 once the request has started to present itself.
6937
6938 The "http-keep-alive" timeout covers these needs. It will define how long to
6939 wait for a new HTTP request to start coming after a response was sent. Once
6940 the first byte of request has been seen, the "http-request" timeout is used
6941 to wait for the complete request to come. Note that empty lines prior to a
6942 new request do not refresh the timeout and are not counted as a new request.
6943
6944 There is also another difference between the two timeouts : when a connection
6945 expires during timeout http-keep-alive, no error is returned, the connection
6946 just closes. If the connection expires in "http-request" while waiting for a
6947 connection to complete, a HTTP 408 error is returned.
6948
6949 In general it is optimal to set this value to a few tens to hundreds of
6950 milliseconds, to allow users to fetch all objects of a page at once but
6951 without waiting for further clicks. Also, if set to a very small value (eg:
6952 1 millisecond) it will probably only accept pipelined requests but not the
6953 non-pipelined ones. It may be a nice trade-off for very large sites running
Patrick Mézard2382ad62010-05-09 10:43:32 +02006954 with tens to hundreds of thousands of clients.
Willy Tarreaub16a5742010-01-10 14:46:16 +01006955
6956 If this parameter is not set, the "http-request" timeout applies, and if both
6957 are not set, "timeout client" still applies at the lower level. It should be
6958 set in the frontend to take effect, unless the frontend is in TCP mode, in
6959 which case the HTTP backend's timeout will be used.
6960
6961 See also : "timeout http-request", "timeout client".
6962
6963
Willy Tarreau036fae02008-01-06 13:24:40 +01006964timeout http-request <timeout>
6965 Set the maximum allowed time to wait for a complete HTTP request
6966 May be used in sections : defaults | frontend | listen | backend
Willy Tarreaucd7afc02009-07-12 10:03:17 +02006967 yes | yes | yes | yes
Willy Tarreau036fae02008-01-06 13:24:40 +01006968 Arguments :
Willy Tarreau844e3c52008-01-11 16:28:18 +01006969 <timeout> is the timeout value specified in milliseconds by default, but
Willy Tarreau036fae02008-01-06 13:24:40 +01006970 can be in any other unit if the number is suffixed by the unit,
6971 as explained at the top of this document.
6972
6973 In order to offer DoS protection, it may be required to lower the maximum
6974 accepted time to receive a complete HTTP request without affecting the client
6975 timeout. This helps protecting against established connections on which
6976 nothing is sent. The client timeout cannot offer a good protection against
6977 this abuse because it is an inactivity timeout, which means that if the
6978 attacker sends one character every now and then, the timeout will not
6979 trigger. With the HTTP request timeout, no matter what speed the client
6980 types, the request will be aborted if it does not complete in time.
6981
6982 Note that this timeout only applies to the header part of the request, and
6983 not to any data. As soon as the empty line is received, this timeout is not
Willy Tarreaub16a5742010-01-10 14:46:16 +01006984 used anymore. It is used again on keep-alive connections to wait for a second
6985 request if "timeout http-keep-alive" is not set.
Willy Tarreau036fae02008-01-06 13:24:40 +01006986
6987 Generally it is enough to set it to a few seconds, as most clients send the
6988 full request immediately upon connection. Add 3 or more seconds to cover TCP
6989 retransmits but that's all. Setting it to very low values (eg: 50 ms) will
6990 generally work on local networks as long as there are no packet losses. This
6991 will prevent people from sending bare HTTP requests using telnet.
6992
6993 If this parameter is not set, the client timeout still applies between each
Willy Tarreaucd7afc02009-07-12 10:03:17 +02006994 chunk of the incoming request. It should be set in the frontend to take
6995 effect, unless the frontend is in TCP mode, in which case the HTTP backend's
6996 timeout will be used.
Willy Tarreau036fae02008-01-06 13:24:40 +01006997
Willy Tarreaub16a5742010-01-10 14:46:16 +01006998 See also : "timeout http-keep-alive", "timeout client".
Willy Tarreau036fae02008-01-06 13:24:40 +01006999
Willy Tarreau844e3c52008-01-11 16:28:18 +01007000
7001timeout queue <timeout>
7002 Set the maximum time to wait in the queue for a connection slot to be free
7003 May be used in sections : defaults | frontend | listen | backend
7004 yes | no | yes | yes
7005 Arguments :
7006 <timeout> is the timeout value specified in milliseconds by default, but
7007 can be in any other unit if the number is suffixed by the unit,
7008 as explained at the top of this document.
7009
7010 When a server's maxconn is reached, connections are left pending in a queue
7011 which may be server-specific or global to the backend. In order not to wait
7012 indefinitely, a timeout is applied to requests pending in the queue. If the
7013 timeout is reached, it is considered that the request will almost never be
7014 served, so it is dropped and a 503 error is returned to the client.
7015
7016 The "timeout queue" statement allows to fix the maximum time for a request to
7017 be left pending in a queue. If unspecified, the same value as the backend's
7018 connection timeout ("timeout connect") is used, for backwards compatibility
7019 with older versions with no "timeout queue" parameter.
7020
7021 See also : "timeout connect", "contimeout".
7022
7023
7024timeout server <timeout>
7025timeout srvtimeout <timeout> (deprecated)
7026 Set the maximum inactivity time on the server side.
7027 May be used in sections : defaults | frontend | listen | backend
7028 yes | no | yes | yes
7029 Arguments :
7030 <timeout> is the timeout value specified in milliseconds by default, but
7031 can be in any other unit if the number is suffixed by the unit,
7032 as explained at the top of this document.
7033
7034 The inactivity timeout applies when the server is expected to acknowledge or
7035 send data. In HTTP mode, this timeout is particularly important to consider
7036 during the first phase of the server's response, when it has to send the
7037 headers, as it directly represents the server's processing time for the
7038 request. To find out what value to put there, it's often good to start with
7039 what would be considered as unacceptable response times, then check the logs
7040 to observe the response time distribution, and adjust the value accordingly.
7041
7042 The value is specified in milliseconds by default, but can be in any other
7043 unit if the number is suffixed by the unit, as specified at the top of this
7044 document. In TCP mode (and to a lesser extent, in HTTP mode), it is highly
7045 recommended that the client timeout remains equal to the server timeout in
7046 order to avoid complex situations to debug. Whatever the expected server
Willy Tarreaud2a4aa22008-01-31 15:28:22 +01007047 response times, it is a good practice to cover at least one or several TCP
Willy Tarreau844e3c52008-01-11 16:28:18 +01007048 packet losses by specifying timeouts that are slightly above multiples of 3
Willy Tarreauce887fd2012-05-12 12:50:00 +02007049 seconds (eg: 4 or 5 seconds minimum). If some long-lived sessions are mixed
7050 with short-lived sessions (eg: WebSocket and HTTP), it's worth considering
7051 "timeout tunnel", which overrides "timeout client" and "timeout server" for
7052 tunnels.
Willy Tarreau844e3c52008-01-11 16:28:18 +01007053
7054 This parameter is specific to backends, but can be specified once for all in
7055 "defaults" sections. This is in fact one of the easiest solutions not to
7056 forget about it. An unspecified timeout results in an infinite timeout, which
7057 is not recommended. Such a usage is accepted and works but reports a warning
7058 during startup because it may results in accumulation of expired sessions in
7059 the system if the system's timeouts are not configured either.
7060
7061 This parameter replaces the old, deprecated "srvtimeout". It is recommended
7062 to use it to write new configurations. The form "timeout srvtimeout" is
7063 provided only by backwards compatibility but its use is strongly discouraged.
7064
Willy Tarreauce887fd2012-05-12 12:50:00 +02007065 See also : "srvtimeout", "timeout client" and "timeout tunnel".
Willy Tarreau844e3c52008-01-11 16:28:18 +01007066
7067
7068timeout tarpit <timeout>
Cyril Bonté78caf842010-03-10 22:41:43 +01007069 Set the duration for which tarpitted connections will be maintained
Willy Tarreau844e3c52008-01-11 16:28:18 +01007070 May be used in sections : defaults | frontend | listen | backend
7071 yes | yes | yes | yes
7072 Arguments :
7073 <timeout> is the tarpit duration specified in milliseconds by default, but
7074 can be in any other unit if the number is suffixed by the unit,
7075 as explained at the top of this document.
7076
7077 When a connection is tarpitted using "reqtarpit", it is maintained open with
7078 no activity for a certain amount of time, then closed. "timeout tarpit"
7079 defines how long it will be maintained open.
7080
7081 The value is specified in milliseconds by default, but can be in any other
7082 unit if the number is suffixed by the unit, as specified at the top of this
7083 document. If unspecified, the same value as the backend's connection timeout
7084 ("timeout connect") is used, for backwards compatibility with older versions
Cyril Bonté78caf842010-03-10 22:41:43 +01007085 with no "timeout tarpit" parameter.
Willy Tarreau844e3c52008-01-11 16:28:18 +01007086
7087 See also : "timeout connect", "contimeout".
7088
7089
Willy Tarreauce887fd2012-05-12 12:50:00 +02007090timeout tunnel <timeout>
7091 Set the maximum inactivity time on the client and server side for tunnels.
7092 May be used in sections : defaults | frontend | listen | backend
7093 yes | no | yes | yes
7094 Arguments :
7095 <timeout> is the timeout value specified in milliseconds by default, but
7096 can be in any other unit if the number is suffixed by the unit,
7097 as explained at the top of this document.
7098
Jamie Gloudonaaa21002012-08-25 00:18:33 -04007099 The tunnel timeout applies when a bidirectional connection is established
Willy Tarreauce887fd2012-05-12 12:50:00 +02007100 between a client and a server, and the connection remains inactive in both
7101 directions. This timeout supersedes both the client and server timeouts once
7102 the connection becomes a tunnel. In TCP, this timeout is used as soon as no
7103 analyser remains attached to either connection (eg: tcp content rules are
7104 accepted). In HTTP, this timeout is used when a connection is upgraded (eg:
7105 when switching to the WebSocket protocol, or forwarding a CONNECT request
7106 to a proxy), or after the first response when no keepalive/close option is
7107 specified.
7108
7109 The value is specified in milliseconds by default, but can be in any other
7110 unit if the number is suffixed by the unit, as specified at the top of this
7111 document. Whatever the expected normal idle time, it is a good practice to
7112 cover at least one or several TCP packet losses by specifying timeouts that
7113 are slightly above multiples of 3 seconds (eg: 4 or 5 seconds minimum).
7114
7115 This parameter is specific to backends, but can be specified once for all in
7116 "defaults" sections. This is in fact one of the easiest solutions not to
7117 forget about it.
7118
7119 Example :
7120 defaults http
7121 option http-server-close
7122 timeout connect 5s
7123 timeout client 30s
7124 timeout client 30s
7125 timeout server 30s
7126 timeout tunnel 1h # timeout to use with WebSocket and CONNECT
7127
7128 See also : "timeout client", "timeout server".
7129
7130
Willy Tarreau844e3c52008-01-11 16:28:18 +01007131transparent (deprecated)
7132 Enable client-side transparent proxying
7133 May be used in sections : defaults | frontend | listen | backend
Willy Tarreau4b1f8592008-12-23 23:13:55 +01007134 yes | no | yes | yes
Willy Tarreau844e3c52008-01-11 16:28:18 +01007135 Arguments : none
7136
7137 This keyword was introduced in order to provide layer 7 persistence to layer
7138 3 load balancers. The idea is to use the OS's ability to redirect an incoming
7139 connection for a remote address to a local process (here HAProxy), and let
7140 this process know what address was initially requested. When this option is
7141 used, sessions without cookies will be forwarded to the original destination
7142 IP address of the incoming request (which should match that of another
7143 equipment), while requests with cookies will still be forwarded to the
7144 appropriate server.
7145
7146 The "transparent" keyword is deprecated, use "option transparent" instead.
7147
7148 Note that contrary to a common belief, this option does NOT make HAProxy
7149 present the client's IP to the server when establishing the connection.
7150
Willy Tarreau844e3c52008-01-11 16:28:18 +01007151 See also: "option transparent"
7152
William Lallemanda73203e2012-03-12 12:48:57 +01007153unique-id-format <string>
7154 Generate a unique ID for each request.
7155 May be used in sections : defaults | frontend | listen | backend
7156 yes | yes | yes | no
7157 Arguments :
7158 <string> is a log-format string.
7159
Cyril Bonté108cf6e2012-04-21 23:30:29 +02007160 This keyword creates a ID for each request using the custom log format. A
7161 unique ID is useful to trace a request passing through many components of
7162 a complex infrastructure. The newly created ID may also be logged using the
7163 %ID tag the log-format string.
William Lallemanda73203e2012-03-12 12:48:57 +01007164
Cyril Bonté108cf6e2012-04-21 23:30:29 +02007165 The format should be composed from elements that are guaranteed to be
7166 unique when combined together. For instance, if multiple haproxy instances
7167 are involved, it might be important to include the node name. It is often
7168 needed to log the incoming connection's source and destination addresses
7169 and ports. Note that since multiple requests may be performed over the same
7170 connection, including a request counter may help differentiate them.
7171 Similarly, a timestamp may protect against a rollover of the counter.
7172 Logging the process ID will avoid collisions after a service restart.
William Lallemanda73203e2012-03-12 12:48:57 +01007173
Cyril Bonté108cf6e2012-04-21 23:30:29 +02007174 It is recommended to use hexadecimal notation for many fields since it
7175 makes them more compact and saves space in logs.
William Lallemanda73203e2012-03-12 12:48:57 +01007176
Cyril Bonté108cf6e2012-04-21 23:30:29 +02007177 Example:
William Lallemanda73203e2012-03-12 12:48:57 +01007178
7179 unique-id-format %{+X}o\ %Ci:%Cp_%Fi:%Fp_%Ts_%rt:%pid
7180
7181 will generate:
7182
7183 7F000001:8296_7F00001E:1F90_4F7B0A69_0003:790A
7184
7185 See also: "unique-id-header"
7186
7187unique-id-header <name>
7188 Add a unique ID header in the HTTP request.
7189 May be used in sections : defaults | frontend | listen | backend
7190 yes | yes | yes | no
7191 Arguments :
7192 <name> is the name of the header.
7193
Cyril Bonté108cf6e2012-04-21 23:30:29 +02007194 Add a unique-id header in the HTTP request sent to the server, using the
7195 unique-id-format. It can't work if the unique-id-format doesn't exist.
William Lallemanda73203e2012-03-12 12:48:57 +01007196
Cyril Bonté108cf6e2012-04-21 23:30:29 +02007197 Example:
William Lallemanda73203e2012-03-12 12:48:57 +01007198
7199 unique-id-format %{+X}o\ %Ci:%Cp_%Fi:%Fp_%Ts_%rt:%pid
7200 unique-id-header X-Unique-ID
7201
7202 will generate:
7203
7204 X-Unique-ID: 7F000001:8296_7F00001E:1F90_4F7B0A69_0003:790A
7205
7206 See also: "unique-id-format"
Willy Tarreau844e3c52008-01-11 16:28:18 +01007207
7208use_backend <backend> if <condition>
7209use_backend <backend> unless <condition>
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02007210 Switch to a specific backend if/unless an ACL-based condition is matched.
Willy Tarreau844e3c52008-01-11 16:28:18 +01007211 May be used in sections : defaults | frontend | listen | backend
7212 no | yes | yes | no
7213 Arguments :
7214 <backend> is the name of a valid backend or "listen" section.
7215
Willy Tarreauc57f0e22009-05-10 13:12:33 +02007216 <condition> is a condition composed of ACLs, as described in section 7.
Willy Tarreau844e3c52008-01-11 16:28:18 +01007217
7218 When doing content-switching, connections arrive on a frontend and are then
7219 dispatched to various backends depending on a number of conditions. The
7220 relation between the conditions and the backends is described with the
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02007221 "use_backend" keyword. While it is normally used with HTTP processing, it can
7222 also be used in pure TCP, either without content using stateless ACLs (eg:
7223 source address validation) or combined with a "tcp-request" rule to wait for
7224 some payload.
Willy Tarreau844e3c52008-01-11 16:28:18 +01007225
7226 There may be as many "use_backend" rules as desired. All of these rules are
7227 evaluated in their declaration order, and the first one which matches will
7228 assign the backend.
7229
7230 In the first form, the backend will be used if the condition is met. In the
7231 second form, the backend will be used if the condition is not met. If no
7232 condition is valid, the backend defined with "default_backend" will be used.
7233 If no default backend is defined, either the servers in the same section are
7234 used (in case of a "listen" section) or, in case of a frontend, no server is
7235 used and a 503 service unavailable response is returned.
7236
Willy Tarreau51aecc72009-07-12 09:47:04 +02007237 Note that it is possible to switch from a TCP frontend to an HTTP backend. In
Krzysztof Piotr Oledzkif8645332009-12-13 21:55:50 +01007238 this case, either the frontend has already checked that the protocol is HTTP,
Willy Tarreau51aecc72009-07-12 09:47:04 +02007239 and backend processing will immediately follow, or the backend will wait for
7240 a complete HTTP request to get in. This feature is useful when a frontend
7241 must decode several protocols on a unique port, one of them being HTTP.
7242
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02007243 See also: "default_backend", "tcp-request", and section 7 about ACLs.
Willy Tarreaud72758d2010-01-12 10:42:19 +01007244
Willy Tarreau036fae02008-01-06 13:24:40 +01007245
Willy Tarreau4a5cade2012-04-05 21:09:48 +02007246use-server <server> if <condition>
7247use-server <server> unless <condition>
7248 Only use a specific server if/unless an ACL-based condition is matched.
7249 May be used in sections : defaults | frontend | listen | backend
7250 no | no | yes | yes
7251 Arguments :
Cyril Bonté108cf6e2012-04-21 23:30:29 +02007252 <server> is the name of a valid server in the same backend section.
Willy Tarreau4a5cade2012-04-05 21:09:48 +02007253
7254 <condition> is a condition composed of ACLs, as described in section 7.
7255
7256 By default, connections which arrive to a backend are load-balanced across
7257 the available servers according to the configured algorithm, unless a
7258 persistence mechanism such as a cookie is used and found in the request.
7259
7260 Sometimes it is desirable to forward a particular request to a specific
7261 server without having to declare a dedicated backend for this server. This
7262 can be achieved using the "use-server" rules. These rules are evaluated after
7263 the "redirect" rules and before evaluating cookies, and they have precedence
7264 on them. There may be as many "use-server" rules as desired. All of these
7265 rules are evaluated in their declaration order, and the first one which
7266 matches will assign the server.
7267
7268 If a rule designates a server which is down, and "option persist" is not used
7269 and no force-persist rule was validated, it is ignored and evaluation goes on
7270 with the next rules until one matches.
7271
7272 In the first form, the server will be used if the condition is met. In the
7273 second form, the server will be used if the condition is not met. If no
7274 condition is valid, the processing continues and the server will be assigned
7275 according to other persistence mechanisms.
7276
7277 Note that even if a rule is matched, cookie processing is still performed but
7278 does not assign the server. This allows prefixed cookies to have their prefix
7279 stripped.
7280
7281 The "use-server" statement works both in HTTP and TCP mode. This makes it
7282 suitable for use with content-based inspection. For instance, a server could
7283 be selected in a farm according to the TLS SNI field. And if these servers
7284 have their weight set to zero, they will not be used for other traffic.
7285
7286 Example :
7287 # intercept incoming TLS requests based on the SNI field
7288 use-server www if { req_ssl_sni -i www.example.com }
7289 server www 192.168.0.1:443 weight 0
7290 use-server mail if { req_ssl_sni -i mail.example.com }
7291 server mail 192.168.0.1:587 weight 0
7292 use-server imap if { req_ssl_sni -i imap.example.com }
7293 server mail 192.168.0.1:993 weight 0
7294 # all the rest is forwarded to this server
7295 server default 192.168.0.2:443 check
7296
7297 See also: "use_backend", serction 5 about server and section 7 about ACLs.
7298
Willy Tarreaub6205fd2012-09-24 12:27:33 +02007299
73005. Bind and Server options
7301--------------------------
7302
7303The "bind", "server" and "default-server" keywords support a number of settings
7304depending on some build options and on the system HAProxy was built on. These
7305settings generally each consist in one word sometimes followed by a value,
7306written on the same line as the "bind" or "server" line. All these options are
7307described in this section.
7308
7309
73105.1. Bind options
7311-----------------
7312
7313The "bind" keyword supports a certain number of settings which are all passed
7314as arguments on the same line. The order in which those arguments appear makes
7315no importance, provided that they appear after the bind address. All of these
7316parameters are optional. Some of them consist in a single words (booleans),
7317while other ones expect a value after them. In this case, the value must be
7318provided immediately after the setting name.
7319
7320The currently supported settings are the following ones.
7321
7322accept-proxy
7323 Enforces the use of the PROXY protocol over any connection accepted by any of
7324 the sockets declared on the same line. The PROXY protocol dictates the layer
7325 3/4 addresses of the incoming connection to be used everywhere an address is
7326 used, with the only exception of "tcp-request connection" rules which will
7327 only see the real connection address. Logs will reflect the addresses
7328 indicated in the protocol, unless it is violated, in which case the real
7329 address will still be used. This keyword combined with support from external
7330 components can be used as an efficient and reliable alternative to the
7331 X-Forwarded-For mechanism which is not always reliable and not even always
Willy Tarreau4f0d9192013-06-11 20:40:55 +02007332 usable. See also "tcp-request connection expect-proxy" for a finer-grained
7333 setting of which client is allowed to use the protocol.
Willy Tarreaub6205fd2012-09-24 12:27:33 +02007334
Willy Tarreauab861d32013-04-02 02:30:41 +02007335alpn <protocols>
7336 This enables the TLS ALPN extension and advertises the specified protocol
7337 list as supported on top of ALPN. The protocol list consists in a comma-
7338 delimited list of protocol names, for instance: "http/1.1,http/1.0" (without
7339 quotes). This requires that the SSL library is build with support for TLS
7340 extensions enabled (check with haproxy -vv). The ALPN extension replaces the
7341 initial NPN extension.
7342
Willy Tarreaub6205fd2012-09-24 12:27:33 +02007343backlog <backlog>
7344 Sets the socket's backlog to this value. If unspecified, the frontend's
7345 backlog is used instead, which generally defaults to the maxconn value.
7346
Emeric Brun7fb34422012-09-28 15:26:15 +02007347ecdhe <named curve>
7348 This setting is only available when support for OpenSSL was built in. It sets
Emeric Brun6924ef82013-03-06 14:08:53 +01007349 the named curve (RFC 4492) used to generate ECDH ephemeral keys. By default,
7350 used named curve is prime256v1.
Emeric Brun7fb34422012-09-28 15:26:15 +02007351
Emeric Brunfd33a262012-10-11 16:28:27 +02007352ca-file <cafile>
Emeric Brun1a073b42012-09-28 17:07:34 +02007353 This setting is only available when support for OpenSSL was built in. It
7354 designates a PEM file from which to load CA certificates used to verify
7355 client's certificate.
7356
Emeric Brunb6dc9342012-09-28 17:55:37 +02007357ca-ignore-err [all|<errorID>,...]
7358 This setting is only available when support for OpenSSL was built in.
7359 Sets a comma separated list of errorIDs to ignore during verify at depth > 0.
7360 If set to 'all', all errors are ignored. SSL handshake is not aborted if an
7361 error is ignored.
7362
Willy Tarreaub6205fd2012-09-24 12:27:33 +02007363ciphers <ciphers>
7364 This setting is only available when support for OpenSSL was built in. It sets
7365 the string describing the list of cipher algorithms ("cipher suite") that are
7366 negociated during the SSL/TLS handshake. The format of the string is defined
7367 in "man 1 ciphers" from OpenSSL man pages, and can be for instance a string
7368 such as "AES:ALL:!aNULL:!eNULL:+RC4:@STRENGTH" (without quotes).
7369
Emeric Brunfd33a262012-10-11 16:28:27 +02007370crl-file <crlfile>
Emeric Brun1a073b42012-09-28 17:07:34 +02007371 This setting is only available when support for OpenSSL was built in. It
7372 designates a PEM file from which to load certificate revocation list used
7373 to verify client's certificate.
7374
Willy Tarreaub6205fd2012-09-24 12:27:33 +02007375crt <cert>
Alex Davies0fbf0162013-03-02 16:04:50 +00007376 This setting is only available when support for OpenSSL was built in. It
7377 designates a PEM file containing both the required certificates and any
7378 associated private keys. This file can be built by concatenating multiple
7379 PEM files into one (e.g. cat cert.pem key.pem > combined.pem). If your CA
7380 requires an intermediate certificate, this can also be concatenated into this
7381 file.
7382
7383 If the OpenSSL used supports Diffie-Hellman, parameters present in this file
7384 are loaded.
7385
7386 If a directory name is used instead of a PEM file, then all files found in
7387 that directory will be loaded. This directive may be specified multiple times
7388 in order to load certificates from multiple files or directories. The
7389 certificates will be presented to clients who provide a valid TLS Server Name
7390 Indication field matching one of their CN or alt subjects. Wildcards are
7391 supported, where a wildcard character '*' is used instead of the first
7392 hostname component (eg: *.example.org matches www.example.org but not
7393 www.sub.example.org).
7394
7395 If no SNI is provided by the client or if the SSL library does not support
7396 TLS extensions, or if the client provides an SNI hostname which does not
7397 match any certificate, then the first loaded certificate will be presented.
7398 This means that when loading certificates from a directory, it is highly
7399 recommended to load the default one first as a file.
7400
Emeric Brune032bfa2012-09-28 13:01:45 +02007401 Note that the same cert may be loaded multiple times without side effects.
Willy Tarreaub6205fd2012-09-24 12:27:33 +02007402
Alex Davies0fbf0162013-03-02 16:04:50 +00007403 Some CAs (such as Godaddy) offer a drop down list of server types that do not
7404 include HAProxy when obtaining a certificate. If this happens be sure to
7405 choose a webserver that the CA believes requires a intermediate CA (for
7406 Godaddy, selection Apache Tomcat will get the correct bundle, but many
7407 others, e.g. nginx, result in a wrong bundle that will not work for some
7408 clients).
7409
Emeric Brunb6dc9342012-09-28 17:55:37 +02007410crt-ignore-err <errors>
Alex Davies0fbf0162013-03-02 16:04:50 +00007411 This setting is only available when support for OpenSSL was built in. Sets a
7412 comma separated list of errorIDs to ignore during verify at depth == 0. If
7413 set to 'all', all errors are ignored. SSL handshake is not abored if an error
7414 is ignored.
Emeric Brunb6dc9342012-09-28 17:55:37 +02007415
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01007416crt-list <file>
7417 This setting is only available when support for OpenSSL was built in. It
Emmanuel Hocdet7c41a1b2013-05-07 20:20:06 +02007418 designates a list of PEM file with an optional list of SNI filter per
7419 certificate, with the following format for each line :
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01007420
Emmanuel Hocdet7c41a1b2013-05-07 20:20:06 +02007421 <crtfile> [[!]<snifilter> ...]
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01007422
Emmanuel Hocdet7c41a1b2013-05-07 20:20:06 +02007423 Wildcards are supported in the SNI filter. Negative filter are also supported,
7424 only useful in combination with a wildcard filter to exclude a particular SNI.
7425 The certificates will be presented to clients who provide a valid TLS Server
7426 Name Indication field matching one of the SNI filters. If no SNI filter is
7427 specified, the CN and alt subjects are used. This directive may be specified
7428 multiple times. See the "crt" option for more information. The default
7429 certificate is still needed to meet OpenSSL expectations. If it is not used,
7430 the 'strict-sni' option may be used.
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01007431
Willy Tarreaub6205fd2012-09-24 12:27:33 +02007432defer-accept
7433 Is an optional keyword which is supported only on certain Linux kernels. It
7434 states that a connection will only be accepted once some data arrive on it,
7435 or at worst after the first retransmit. This should be used only on protocols
7436 for which the client talks first (eg: HTTP). It can slightly improve
7437 performance by ensuring that most of the request is already available when
7438 the connection is accepted. On the other hand, it will not be able to detect
7439 connections which don't talk. It is important to note that this option is
7440 broken in all kernels up to 2.6.31, as the connection is never accepted until
7441 the client talks. This can cause issues with front firewalls which would see
7442 an established connection while the proxy will only see it in SYN_RECV. This
7443 option is only supported on TCPv4/TCPv6 sockets and ignored by other ones.
7444
Emeric Brun2cb7ae52012-10-05 14:14:21 +02007445force-sslv3
7446 This option enforces use of SSLv3 only on SSL connections instanciated from
7447 this listener. SSLv3 is generally less expensive than the TLS counterparts
7448 for high connection rates. See also "force-tls*", "no-sslv3", and "no-tls*".
7449
7450force-tlsv10
7451 This option enforces use of TLSv1.0 only on SSL connections instanciated from
7452 this listener. See also "force-tls*", "no-sslv3", and "no-tls*".
7453
7454force-tlsv11
7455 This option enforces use of TLSv1.1 only on SSL connections instanciated from
7456 this listener. See also "force-tls*", "no-sslv3", and "no-tls*".
7457
7458force-tlsv12
7459 This option enforces use of TLSv1.2 only on SSL connections instanciated from
7460 this listener. See also "force-tls*", "no-sslv3", and "no-tls*".
7461
Willy Tarreaub6205fd2012-09-24 12:27:33 +02007462gid <gid>
7463 Sets the group of the UNIX sockets to the designated system gid. It can also
7464 be set by default in the global section's "unix-bind" statement. Note that
7465 some platforms simply ignore this. This setting is equivalent to the "group"
7466 setting except that the group ID is used instead of its name. This setting is
7467 ignored by non UNIX sockets.
7468
7469group <group>
7470 Sets the group of the UNIX sockets to the designated system group. It can
7471 also be set by default in the global section's "unix-bind" statement. Note
7472 that some platforms simply ignore this. This setting is equivalent to the
7473 "gid" setting except that the group name is used instead of its gid. This
7474 setting is ignored by non UNIX sockets.
7475
7476id <id>
7477 Fixes the socket ID. By default, socket IDs are automatically assigned, but
7478 sometimes it is more convenient to fix them to ease monitoring. This value
7479 must be strictly positive and unique within the listener/frontend. This
7480 option can only be used when defining only a single socket.
7481
7482interface <interface>
Lukas Tribusfce2e962013-02-12 22:13:19 +01007483 Restricts the socket to a specific interface. When specified, only packets
7484 received from that particular interface are processed by the socket. This is
7485 currently only supported on Linux. The interface must be a primary system
7486 interface, not an aliased interface. It is also possible to bind multiple
7487 frontends to the same address if they are bound to different interfaces. Note
7488 that binding to a network interface requires root privileges. This parameter
7489 is only compatible with TCPv4/TCPv6 sockets.
Willy Tarreaub6205fd2012-09-24 12:27:33 +02007490
Willy Tarreauabb175f2012-09-24 12:43:26 +02007491level <level>
7492 This setting is used with the stats sockets only to restrict the nature of
7493 the commands that can be issued on the socket. It is ignored by other
7494 sockets. <level> can be one of :
7495 - "user" is the least privileged level ; only non-sensitive stats can be
7496 read, and no change is allowed. It would make sense on systems where it
7497 is not easy to restrict access to the socket.
7498 - "operator" is the default level and fits most common uses. All data can
7499 be read, and only non-sensitive changes are permitted (eg: clear max
7500 counters).
7501 - "admin" should be used with care, as everything is permitted (eg: clear
7502 all counters).
7503
Willy Tarreaub6205fd2012-09-24 12:27:33 +02007504maxconn <maxconn>
7505 Limits the sockets to this number of concurrent connections. Extraneous
7506 connections will remain in the system's backlog until a connection is
7507 released. If unspecified, the limit will be the same as the frontend's
7508 maxconn. Note that in case of port ranges or multiple addresses, the same
7509 value will be applied to each socket. This setting enables different
7510 limitations on expensive sockets, for instance SSL entries which may easily
7511 eat all memory.
7512
7513mode <mode>
7514 Sets the octal mode used to define access permissions on the UNIX socket. It
7515 can also be set by default in the global section's "unix-bind" statement.
7516 Note that some platforms simply ignore this. This setting is ignored by non
7517 UNIX sockets.
7518
7519mss <maxseg>
7520 Sets the TCP Maximum Segment Size (MSS) value to be advertised on incoming
7521 connections. This can be used to force a lower MSS for certain specific
7522 ports, for instance for connections passing through a VPN. Note that this
7523 relies on a kernel feature which is theoretically supported under Linux but
7524 was buggy in all versions prior to 2.6.28. It may or may not work on other
7525 operating systems. It may also not change the advertised value but change the
7526 effective size of outgoing segments. The commonly advertised value for TCPv4
7527 over Ethernet networks is 1460 = 1500(MTU) - 40(IP+TCP). If this value is
7528 positive, it will be used as the advertised MSS. If it is negative, it will
7529 indicate by how much to reduce the incoming connection's advertised MSS for
7530 outgoing segments. This parameter is only compatible with TCP v4/v6 sockets.
7531
7532name <name>
7533 Sets an optional name for these sockets, which will be reported on the stats
7534 page.
7535
7536nice <nice>
7537 Sets the 'niceness' of connections initiated from the socket. Value must be
7538 in the range -1024..1024 inclusive, and defaults to zero. Positive values
7539 means that such connections are more friendly to others and easily offer
7540 their place in the scheduler. On the opposite, negative values mean that
7541 connections want to run with a higher priority than others. The difference
7542 only happens under high loads when the system is close to saturation.
7543 Negative values are appropriate for low-latency or administration services,
7544 and high values are generally recommended for CPU intensive tasks such as SSL
7545 processing or bulk transfers which are less sensible to latency. For example,
7546 it may make sense to use a positive value for an SMTP socket and a negative
7547 one for an RDP socket.
7548
Emeric Brun9b3009b2012-10-05 11:55:06 +02007549no-sslv3
Willy Tarreaub6205fd2012-09-24 12:27:33 +02007550 This setting is only available when support for OpenSSL was built in. It
7551 disables support for SSLv3 on any sockets instanciated from the listener when
7552 SSL is supported. Note that SSLv2 is forced disabled in the code and cannot
Emeric Brun2cb7ae52012-10-05 14:14:21 +02007553 be enabled using any configuration option. See also "force-tls*",
7554 and "force-sslv3".
Willy Tarreaub6205fd2012-09-24 12:27:33 +02007555
Emeric Brun90ad8722012-10-02 14:00:59 +02007556no-tls-tickets
7557 This setting is only available when support for OpenSSL was built in. It
7558 disables the stateless session resumption (RFC 5077 TLS Ticket
7559 extension) and force to use stateful session resumption. Stateless
7560 session resumption is more expensive in CPU usage.
7561
Emeric Brun9b3009b2012-10-05 11:55:06 +02007562no-tlsv10
Willy Tarreaub6205fd2012-09-24 12:27:33 +02007563 This setting is only available when support for OpenSSL was built in. It
Emeric Brun2cb7ae52012-10-05 14:14:21 +02007564 disables support for TLSv1.0 on any sockets instanciated from the listener
7565 when SSL is supported. Note that SSLv2 is forced disabled in the code and
7566 cannot be enabled using any configuration option. See also "force-tls*",
7567 and "force-sslv3".
Willy Tarreaub6205fd2012-09-24 12:27:33 +02007568
Emeric Brun9b3009b2012-10-05 11:55:06 +02007569no-tlsv11
Emeric Brunf5da4932012-09-28 19:42:54 +02007570 This setting is only available when support for OpenSSL was built in. It
Emeric Brun2cb7ae52012-10-05 14:14:21 +02007571 disables support for TLSv1.1 on any sockets instanciated from the listener
7572 when SSL is supported. Note that SSLv2 is forced disabled in the code and
7573 cannot be enabled using any configuration option. See also "force-tls*",
7574 and "force-sslv3".
Emeric Brunf5da4932012-09-28 19:42:54 +02007575
Emeric Brun9b3009b2012-10-05 11:55:06 +02007576no-tlsv12
Emeric Brunf5da4932012-09-28 19:42:54 +02007577 This setting is only available when support for OpenSSL was built in. It
Emeric Brun2cb7ae52012-10-05 14:14:21 +02007578 disables support for TLSv1.2 on any sockets instanciated from the listener
7579 when SSL is supported. Note that SSLv2 is forced disabled in the code and
7580 cannot be enabled using any configuration option. See also "force-tls*",
7581 and "force-sslv3".
Emeric Brunf5da4932012-09-28 19:42:54 +02007582
Willy Tarreau6c9a3d52012-10-18 18:57:14 +02007583npn <protocols>
7584 This enables the NPN TLS extension and advertises the specified protocol list
7585 as supported on top of NPN. The protocol list consists in a comma-delimited
7586 list of protocol names, for instance: "http/1.1,http/1.0" (without quotes).
7587 This requires that the SSL library is build with support for TLS extensions
Willy Tarreauab861d32013-04-02 02:30:41 +02007588 enabled (check with haproxy -vv). Note that the NPN extension has been
7589 replaced with the ALPN extension (see the "alpn" keyword).
Willy Tarreau6c9a3d52012-10-18 18:57:14 +02007590
Willy Tarreaub6205fd2012-09-24 12:27:33 +02007591ssl
7592 This setting is only available when support for OpenSSL was built in. It
7593 enables SSL deciphering on connections instanciated from this listener. A
7594 certificate is necessary (see "crt" above). All contents in the buffers will
7595 appear in clear text, so that ACLs and HTTP processing will only have access
7596 to deciphered contents.
7597
Emmanuel Hocdet65623372013-01-24 17:17:15 +01007598strict-sni
7599 This setting is only available when support for OpenSSL was built in. The
7600 SSL/TLS negotiation is allow only if the client provided an SNI which match
7601 a certificate. The default certificate is not used.
7602 See the "crt" option for more information.
7603
Willy Tarreau1c862c52012-10-05 16:21:00 +02007604tfo
Lukas Tribus0defb902013-02-13 23:35:39 +01007605 Is an optional keyword which is supported only on Linux kernels >= 3.7. It
Willy Tarreau1c862c52012-10-05 16:21:00 +02007606 enables TCP Fast Open on the listening socket, which means that clients which
7607 support this feature will be able to send a request and receive a response
7608 during the 3-way handshake starting from second connection, thus saving one
7609 round-trip after the first connection. This only makes sense with protocols
7610 that use high connection rates and where each round trip matters. This can
7611 possibly cause issues with many firewalls which do not accept data on SYN
7612 packets, so this option should only be enabled once well tested. This option
Lukas Tribus0999f762013-04-02 16:43:24 +02007613 is only supported on TCPv4/TCPv6 sockets and ignored by other ones. You may
7614 need to build HAProxy with USE_TFO=1 if your libc doesn't define
7615 TCP_FASTOPEN.
Willy Tarreau1c862c52012-10-05 16:21:00 +02007616
Willy Tarreaub6205fd2012-09-24 12:27:33 +02007617transparent
7618 Is an optional keyword which is supported only on certain Linux kernels. It
7619 indicates that the addresses will be bound even if they do not belong to the
7620 local machine, and that packets targeting any of these addresses will be
7621 intercepted just as if the addresses were locally configured. This normally
7622 requires that IP forwarding is enabled. Caution! do not use this with the
7623 default address '*', as it would redirect any traffic for the specified port.
7624 This keyword is available only when HAProxy is built with USE_LINUX_TPROXY=1.
7625 This parameter is only compatible with TCPv4 and TCPv6 sockets, depending on
7626 kernel version. Some distribution kernels include backports of the feature,
7627 so check for support with your vendor.
7628
Willy Tarreau77e3af92012-11-24 15:07:23 +01007629v4v6
7630 Is an optional keyword which is supported only on most recent systems
7631 including Linux kernels >= 2.4.21. It is used to bind a socket to both IPv4
7632 and IPv6 when it uses the default address. Doing so is sometimes necessary
7633 on systems which bind to IPv6 only by default. It has no effect on non-IPv6
7634 sockets, and is overriden by the "v6only" option.
7635
Willy Tarreau9b6700f2012-11-24 11:55:28 +01007636v6only
7637 Is an optional keyword which is supported only on most recent systems
7638 including Linux kernels >= 2.4.21. It is used to bind a socket to IPv6 only
7639 when it uses the default address. Doing so is sometimes preferred to doing it
Willy Tarreau77e3af92012-11-24 15:07:23 +01007640 system-wide as it is per-listener. It has no effect on non-IPv6 sockets and
7641 has precedence over the "v4v6" option.
Willy Tarreau9b6700f2012-11-24 11:55:28 +01007642
Willy Tarreaub6205fd2012-09-24 12:27:33 +02007643uid <uid>
7644 Sets the owner of the UNIX sockets to the designated system uid. It can also
7645 be set by default in the global section's "unix-bind" statement. Note that
7646 some platforms simply ignore this. This setting is equivalent to the "user"
7647 setting except that the user numeric ID is used instead of its name. This
7648 setting is ignored by non UNIX sockets.
7649
7650user <user>
7651 Sets the owner of the UNIX sockets to the designated system user. It can also
7652 be set by default in the global section's "unix-bind" statement. Note that
7653 some platforms simply ignore this. This setting is equivalent to the "uid"
7654 setting except that the user name is used instead of its uid. This setting is
7655 ignored by non UNIX sockets.
7656
Emeric Brun1a073b42012-09-28 17:07:34 +02007657verify [none|optional|required]
7658 This setting is only available when support for OpenSSL was built in. If set
7659 to 'none', client certificate is not requested. This is the default. In other
7660 cases, a client certificate is requested. If the client does not provide a
7661 certificate after the request and if 'verify' is set to 'required', then the
7662 handshake is aborted, while it would have succeeded if set to 'optional'. The
Emeric Brunfd33a262012-10-11 16:28:27 +02007663 certificate provided by the client is always verified using CAs from
7664 'ca-file' and optional CRLs from 'crl-file'. On verify failure the handshake
7665 is aborted, regardless of the 'verify' option, unless the error code exactly
7666 matches one of those listed with 'ca-ignore-err' or 'crt-ignore-err'.
Willy Tarreau4a5cade2012-04-05 21:09:48 +02007667
Willy Tarreaub6205fd2012-09-24 12:27:33 +020076685.2. Server and default-server options
Cyril Bontéf0c60612010-02-06 14:44:47 +01007669------------------------------------
Willy Tarreau6a06a402007-07-15 20:15:28 +02007670
Krzysztof Piotr Oledzkic6df0662010-01-05 16:38:49 +01007671The "server" and "default-server" keywords support a certain number of settings
7672which are all passed as arguments on the server line. The order in which those
7673arguments appear does not count, and they are all optional. Some of those
7674settings are single words (booleans) while others expect one or several values
7675after them. In this case, the values must immediately follow the setting name.
7676Except default-server, all those settings must be specified after the server's
7677address if they are used:
Willy Tarreau6a06a402007-07-15 20:15:28 +02007678
Willy Tarreauc57f0e22009-05-10 13:12:33 +02007679 server <name> <address>[:port] [settings ...]
Krzysztof Piotr Oledzkic6df0662010-01-05 16:38:49 +01007680 default-server [settings ...]
Willy Tarreau6a06a402007-07-15 20:15:28 +02007681
Krzysztof Piotr Oledzkic53601c2010-01-06 10:50:42 +01007682The currently supported settings are the following ones.
Willy Tarreau0ba27502007-12-24 16:55:16 +01007683
Willy Tarreauceb4ac92012-04-28 00:41:46 +02007684addr <ipv4|ipv6>
Willy Tarreauc57f0e22009-05-10 13:12:33 +02007685 Using the "addr" parameter, it becomes possible to use a different IP address
7686 to send health-checks. On some servers, it may be desirable to dedicate an IP
7687 address to specific component able to perform complex tests which are more
7688 suitable to health-checks than the application. This parameter is ignored if
7689 the "check" parameter is not set. See also the "port" parameter.
Willy Tarreau6a06a402007-07-15 20:15:28 +02007690
Krzysztof Piotr Oledzkic53601c2010-01-06 10:50:42 +01007691 Supported in default-server: No
7692
Willy Tarreauc57f0e22009-05-10 13:12:33 +02007693backup
7694 When "backup" is present on a server line, the server is only used in load
7695 balancing when all other non-backup servers are unavailable. Requests coming
7696 with a persistence cookie referencing the server will always be served
7697 though. By default, only the first operational backup server is used, unless
7698 the "allbackups" option is set in the backend. See also the "allbackups"
7699 option.
Willy Tarreau6a06a402007-07-15 20:15:28 +02007700
Krzysztof Piotr Oledzkic53601c2010-01-06 10:50:42 +01007701 Supported in default-server: No
7702
Emeric Brunef42d922012-10-11 16:11:36 +02007703ca-file <cafile>
7704 This setting is only available when support for OpenSSL was built in. It
7705 designates a PEM file from which to load CA certificates used to verify
7706 server's certificate.
7707
7708 Supported in default-server: No
7709
Willy Tarreauc57f0e22009-05-10 13:12:33 +02007710check
7711 This option enables health checks on the server. By default, a server is
Patrick Mézardb7aeec62012-01-22 16:01:22 +01007712 always considered available. If "check" is set, the server is available when
7713 accepting periodic TCP connections, to ensure that it is really able to serve
7714 requests. The default address and port to send the tests to are those of the
7715 server, and the default source is the same as the one defined in the
7716 backend. It is possible to change the address using the "addr" parameter, the
7717 port using the "port" parameter, the source address using the "source"
7718 address, and the interval and timers using the "inter", "rise" and "fall"
Simon Hormana2b9dad2013-02-12 10:45:54 +09007719 parameters. The request method is define in the backend using the
7720 "httpchk", "lb-agent-chk", "smtpchk", "mysql-check", "pgsql-check" and
7721 "ssl-hello-chk" options. Please refer to those options and parameters for
7722 more information.
Willy Tarreauc57f0e22009-05-10 13:12:33 +02007723
Krzysztof Piotr Oledzkic53601c2010-01-06 10:50:42 +01007724 Supported in default-server: No
7725
Willy Tarreau6c16adc2012-10-05 00:04:16 +02007726check-send-proxy
7727 This option forces emission of a PROXY protocol line with outgoing health
7728 checks, regardless of whether the server uses send-proxy or not for the
7729 normal traffic. By default, the PROXY protocol is enabled for health checks
7730 if it is already enabled for normal traffic and if no "port" nor "addr"
7731 directive is present. However, if such a directive is present, the
7732 "check-send-proxy" option needs to be used to force the use of the
7733 protocol. See also the "send-proxy" option for more information.
7734
7735 Supported in default-server: No
7736
Willy Tarreau763a95b2012-10-04 23:15:39 +02007737check-ssl
7738 This option forces encryption of all health checks over SSL, regardless of
7739 whether the server uses SSL or not for the normal traffic. This is generally
7740 used when an explicit "port" or "addr" directive is specified and SSL health
7741 checks are not inherited. It is important to understand that this option
7742 inserts an SSL transport layer below the ckecks, so that a simple TCP connect
7743 check becomes an SSL connect, which replaces the old ssl-hello-chk. The most
7744 common use is to send HTTPS checks by combining "httpchk" with SSL checks.
7745 All SSL settings are common to health checks and traffic (eg: ciphers).
7746 See the "ssl" option for more information.
7747
7748 Supported in default-server: No
7749
Willy Tarreaua0ee1d02012-09-10 09:01:23 +02007750ciphers <ciphers>
7751 This option sets the string describing the list of cipher algorithms that is
7752 is negociated during the SSL/TLS handshake with the server. The format of the
7753 string is defined in "man 1 ciphers". When SSL is used to communicate with
7754 servers on the local network, it is common to see a weaker set of algorithms
7755 than what is used over the internet. Doing so reduces CPU usage on both the
7756 server and haproxy while still keeping it compatible with deployed software.
7757 Some algorithms such as RC4-SHA1 are reasonably cheap. If no security at all
7758 is needed and just connectivity, using DES can be appropriate.
7759
Willy Tarreau763a95b2012-10-04 23:15:39 +02007760 Supported in default-server: No
7761
Willy Tarreauc57f0e22009-05-10 13:12:33 +02007762cookie <value>
7763 The "cookie" parameter sets the cookie value assigned to the server to
7764 <value>. This value will be checked in incoming requests, and the first
7765 operational server possessing the same value will be selected. In return, in
7766 cookie insertion or rewrite modes, this value will be assigned to the cookie
7767 sent to the client. There is nothing wrong in having several servers sharing
7768 the same cookie value, and it is in fact somewhat common between normal and
7769 backup servers. See also the "cookie" keyword in backend section.
7770
Krzysztof Piotr Oledzkic53601c2010-01-06 10:50:42 +01007771 Supported in default-server: No
7772
Emeric Brunef42d922012-10-11 16:11:36 +02007773crl-file <crlfile>
7774 This setting is only available when support for OpenSSL was built in. It
7775 designates a PEM file from which to load certificate revocation list used
7776 to verify server's certificate.
7777
7778 Supported in default-server: No
7779
Emeric Bruna7aa3092012-10-26 12:58:00 +02007780crt <cert>
7781 This setting is only available when support for OpenSSL was built in.
7782 It designates a PEM file from which to load both a certificate and the
7783 associated private key. This file can be built by concatenating both PEM
7784 files into one. This certificate will be sent if the server send a client
7785 certificate request.
7786
7787 Supported in default-server: No
7788
Willy Tarreau96839092010-03-29 10:02:24 +02007789disabled
7790 The "disabled" keyword starts the server in the "disabled" state. That means
7791 that it is marked down in maintenance mode, and no connection other than the
7792 ones allowed by persist mode will reach it. It is very well suited to setup
7793 new servers, because normal traffic will never reach them, while it is still
7794 possible to test the service by making use of the force-persist mechanism.
7795
7796 Supported in default-server: No
7797
Krzysztof Piotr Oledzkic53601c2010-01-06 10:50:42 +01007798error-limit <count>
Willy Tarreau983e01e2010-01-11 18:42:06 +01007799 If health observing is enabled, the "error-limit" parameter specifies the
7800 number of consecutive errors that triggers event selected by the "on-error"
7801 option. By default it is set to 10 consecutive errors.
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +01007802
Krzysztof Piotr Oledzkic53601c2010-01-06 10:50:42 +01007803 Supported in default-server: Yes
7804
7805 See also the "check", "error-limit" and "on-error".
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +01007806
Krzysztof Piotr Oledzkic53601c2010-01-06 10:50:42 +01007807fall <count>
Willy Tarreauc57f0e22009-05-10 13:12:33 +02007808 The "fall" parameter states that a server will be considered as dead after
7809 <count> consecutive unsuccessful health checks. This value defaults to 3 if
7810 unspecified. See also the "check", "inter" and "rise" parameters.
7811
Krzysztof Piotr Oledzkic53601c2010-01-06 10:50:42 +01007812 Supported in default-server: Yes
7813
Emeric Brun8694b9a2012-10-05 14:39:07 +02007814force-sslv3
7815 This option enforces use of SSLv3 only when SSL is used to communicate with
7816 the server. SSLv3 is generally less expensive than the TLS counterparts for
7817 high connection rates. See also "no-tlsv*", "no-sslv3".
7818
7819 Supported in default-server: No
7820
7821force-tlsv10
7822 This option enforces use of TLSv1.0 only when SSL is used to communicate with
7823 the server. See also "no-tlsv*", "no-sslv3".
7824
7825 Supported in default-server: No
7826
7827force-tlsv11
7828 This option enforces use of TLSv1.1 only when SSL is used to communicate with
7829 the server. See also "no-tlsv*", "no-sslv3".
7830
7831 Supported in default-server: No
7832
7833force-tlsv12
7834 This option enforces use of TLSv1.2 only when SSL is used to communicate with
7835 the server. See also "no-tlsv*", "no-sslv3".
7836
7837 Supported in default-server: No
7838
Willy Tarreauc57f0e22009-05-10 13:12:33 +02007839id <value>
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02007840 Set a persistent ID for the server. This ID must be positive and unique for
7841 the proxy. An unused ID will automatically be assigned if unset. The first
7842 assigned value will be 1. This ID is currently only returned in statistics.
Willy Tarreauc57f0e22009-05-10 13:12:33 +02007843
Krzysztof Piotr Oledzkic53601c2010-01-06 10:50:42 +01007844 Supported in default-server: No
7845
7846inter <delay>
7847fastinter <delay>
7848downinter <delay>
Willy Tarreauc57f0e22009-05-10 13:12:33 +02007849 The "inter" parameter sets the interval between two consecutive health checks
7850 to <delay> milliseconds. If left unspecified, the delay defaults to 2000 ms.
7851 It is also possible to use "fastinter" and "downinter" to optimize delays
7852 between checks depending on the server state :
7853
7854 Server state | Interval used
7855 ---------------------------------+-----------------------------------------
7856 UP 100% (non-transitional) | "inter"
7857 ---------------------------------+-----------------------------------------
7858 Transitionally UP (going down), |
7859 Transitionally DOWN (going up), | "fastinter" if set, "inter" otherwise.
7860 or yet unchecked. |
7861 ---------------------------------+-----------------------------------------
7862 DOWN 100% (non-transitional) | "downinter" if set, "inter" otherwise.
7863 ---------------------------------+-----------------------------------------
Willy Tarreaud72758d2010-01-12 10:42:19 +01007864
Willy Tarreauc57f0e22009-05-10 13:12:33 +02007865 Just as with every other time-based parameter, they can be entered in any
7866 other explicit unit among { us, ms, s, m, h, d }. The "inter" parameter also
7867 serves as a timeout for health checks sent to servers if "timeout check" is
7868 not set. In order to reduce "resonance" effects when multiple servers are
7869 hosted on the same hardware, the health-checks of all servers are started
7870 with a small time offset between them. It is also possible to add some random
7871 noise in the health checks interval using the global "spread-checks"
7872 keyword. This makes sense for instance when a lot of backends use the same
7873 servers.
7874
Krzysztof Piotr Oledzkic53601c2010-01-06 10:50:42 +01007875 Supported in default-server: Yes
7876
7877maxconn <maxconn>
Willy Tarreauc57f0e22009-05-10 13:12:33 +02007878 The "maxconn" parameter specifies the maximal number of concurrent
7879 connections that will be sent to this server. If the number of incoming
7880 concurrent requests goes higher than this value, they will be queued, waiting
7881 for a connection to be released. This parameter is very important as it can
7882 save fragile servers from going down under extreme loads. If a "minconn"
7883 parameter is specified, the limit becomes dynamic. The default value is "0"
7884 which means unlimited. See also the "minconn" and "maxqueue" parameters, and
7885 the backend's "fullconn" keyword.
7886
Krzysztof Piotr Oledzkic53601c2010-01-06 10:50:42 +01007887 Supported in default-server: Yes
7888
7889maxqueue <maxqueue>
Willy Tarreauc57f0e22009-05-10 13:12:33 +02007890 The "maxqueue" parameter specifies the maximal number of connections which
7891 will wait in the queue for this server. If this limit is reached, next
7892 requests will be redispatched to other servers instead of indefinitely
7893 waiting to be served. This will break persistence but may allow people to
7894 quickly re-log in when the server they try to connect to is dying. The
7895 default value is "0" which means the queue is unlimited. See also the
7896 "maxconn" and "minconn" parameters.
7897
Krzysztof Piotr Oledzkic53601c2010-01-06 10:50:42 +01007898 Supported in default-server: Yes
7899
7900minconn <minconn>
Willy Tarreauc57f0e22009-05-10 13:12:33 +02007901 When the "minconn" parameter is set, the maxconn limit becomes a dynamic
7902 limit following the backend's load. The server will always accept at least
7903 <minconn> connections, never more than <maxconn>, and the limit will be on
7904 the ramp between both values when the backend has less than <fullconn>
7905 concurrent connections. This makes it possible to limit the load on the
7906 server during normal loads, but push it further for important loads without
Krzysztof Piotr Oledzkif8645332009-12-13 21:55:50 +01007907 overloading the server during exceptional loads. See also the "maxconn"
Willy Tarreauc57f0e22009-05-10 13:12:33 +02007908 and "maxqueue" parameters, as well as the "fullconn" backend keyword.
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +01007909
Krzysztof Piotr Oledzkic53601c2010-01-06 10:50:42 +01007910 Supported in default-server: Yes
7911
Emeric Brun9b3009b2012-10-05 11:55:06 +02007912no-sslv3
Willy Tarreaua0ee1d02012-09-10 09:01:23 +02007913 This option disables support for SSLv3 when SSL is used to communicate with
7914 the server. Note that SSLv2 is disabled in the code and cannot be enabled
Emeric Brun8694b9a2012-10-05 14:39:07 +02007915 using any configuration option. See also "force-sslv3", "force-tlsv*".
Willy Tarreaua0ee1d02012-09-10 09:01:23 +02007916
Willy Tarreau763a95b2012-10-04 23:15:39 +02007917 Supported in default-server: No
7918
Emeric Brunf9c5c472012-10-11 15:28:34 +02007919no-tls-tickets
7920 This setting is only available when support for OpenSSL was built in. It
7921 disables the stateless session resumption (RFC 5077 TLS Ticket
7922 extension) and force to use stateful session resumption. Stateless
7923 session resumption is more expensive in CPU usage for servers.
7924
7925 Supported in default-server: No
7926
Emeric Brun9b3009b2012-10-05 11:55:06 +02007927no-tlsv10
Emeric Brun8694b9a2012-10-05 14:39:07 +02007928 This option disables support for TLSv1.0 when SSL is used to communicate with
Emeric Brunf5da4932012-09-28 19:42:54 +02007929 the server. Note that SSLv2 is disabled in the code and cannot be enabled
7930 using any configuration option. TLSv1 is more expensive than SSLv3 so it
Emeric Brun8694b9a2012-10-05 14:39:07 +02007931 often makes sense to disable it when communicating with local servers. See
7932 also "force-sslv3", "force-tlsv*".
Emeric Brunf5da4932012-09-28 19:42:54 +02007933
Willy Tarreau763a95b2012-10-04 23:15:39 +02007934 Supported in default-server: No
7935
Emeric Brun9b3009b2012-10-05 11:55:06 +02007936no-tlsv11
Emeric Brun8694b9a2012-10-05 14:39:07 +02007937 This option disables support for TLSv1.1 when SSL is used to communicate with
Emeric Brunf5da4932012-09-28 19:42:54 +02007938 the server. Note that SSLv2 is disabled in the code and cannot be enabled
7939 using any configuration option. TLSv1 is more expensive than SSLv3 so it
Emeric Brun8694b9a2012-10-05 14:39:07 +02007940 often makes sense to disable it when communicating with local servers. See
7941 also "force-sslv3", "force-tlsv*".
Emeric Brunf5da4932012-09-28 19:42:54 +02007942
Willy Tarreau763a95b2012-10-04 23:15:39 +02007943 Supported in default-server: No
7944
Emeric Brun9b3009b2012-10-05 11:55:06 +02007945no-tlsv12
Emeric Brun8694b9a2012-10-05 14:39:07 +02007946 This option disables support for TLSv1.2 when SSL is used to communicate with
Willy Tarreaua0ee1d02012-09-10 09:01:23 +02007947 the server. Note that SSLv2 is disabled in the code and cannot be enabled
7948 using any configuration option. TLSv1 is more expensive than SSLv3 so it
Emeric Brun8694b9a2012-10-05 14:39:07 +02007949 often makes sense to disable it when communicating with local servers. See
7950 also "force-sslv3", "force-tlsv*".
Willy Tarreaua0ee1d02012-09-10 09:01:23 +02007951
Willy Tarreau763a95b2012-10-04 23:15:39 +02007952 Supported in default-server: No
7953
Simon Hormanfa461682011-06-25 09:39:49 +09007954non-stick
7955 Never add connections allocated to this sever to a stick-table.
7956 This may be used in conjunction with backup to ensure that
7957 stick-table persistence is disabled for backup servers.
7958
Willy Tarreau763a95b2012-10-04 23:15:39 +02007959 Supported in default-server: No
7960
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +01007961observe <mode>
7962 This option enables health adjusting based on observing communication with
7963 the server. By default this functionality is disabled and enabling it also
7964 requires to enable health checks. There are two supported modes: "layer4" and
7965 "layer7". In layer4 mode, only successful/unsuccessful tcp connections are
7966 significant. In layer7, which is only allowed for http proxies, responses
7967 received from server are verified, like valid/wrong http code, unparsable
Willy Tarreau150d1462012-03-10 08:19:02 +01007968 headers, a timeout, etc. Valid status codes include 100 to 499, 501 and 505.
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +01007969
Krzysztof Piotr Oledzkic53601c2010-01-06 10:50:42 +01007970 Supported in default-server: No
7971
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +01007972 See also the "check", "on-error" and "error-limit".
7973
Krzysztof Piotr Oledzkic53601c2010-01-06 10:50:42 +01007974on-error <mode>
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +01007975 Select what should happen when enough consecutive errors are detected.
7976 Currently, four modes are available:
7977 - fastinter: force fastinter
7978 - fail-check: simulate a failed check, also forces fastinter (default)
7979 - sudden-death: simulate a pre-fatal failed health check, one more failed
7980 check will mark a server down, forces fastinter
7981 - mark-down: mark the server immediately down and force fastinter
7982
Krzysztof Piotr Oledzkic53601c2010-01-06 10:50:42 +01007983 Supported in default-server: Yes
7984
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +01007985 See also the "check", "observe" and "error-limit".
7986
Simon Hormane0d1bfb2011-06-21 14:34:58 +09007987on-marked-down <action>
7988 Modify what occurs when a server is marked down.
7989 Currently one action is available:
Justin Karnegeseb2c24a2012-05-24 15:28:52 -07007990 - shutdown-sessions: Shutdown peer sessions. When this setting is enabled,
7991 all connections to the server are immediately terminated when the server
7992 goes down. It might be used if the health check detects more complex cases
7993 than a simple connection status, and long timeouts would cause the service
7994 to remain unresponsive for too long a time. For instance, a health check
7995 might detect that a database is stuck and that there's no chance to reuse
7996 existing connections anymore. Connections killed this way are logged with
7997 a 'D' termination code (for "Down").
Simon Hormane0d1bfb2011-06-21 14:34:58 +09007998
7999 Actions are disabled by default
8000
8001 Supported in default-server: Yes
8002
Justin Karnegeseb2c24a2012-05-24 15:28:52 -07008003on-marked-up <action>
8004 Modify what occurs when a server is marked up.
8005 Currently one action is available:
8006 - shutdown-backup-sessions: Shutdown sessions on all backup servers. This is
8007 done only if the server is not in backup state and if it is not disabled
8008 (it must have an effective weight > 0). This can be used sometimes to force
8009 an active server to take all the traffic back after recovery when dealing
8010 with long sessions (eg: LDAP, SQL, ...). Doing this can cause more trouble
8011 than it tries to solve (eg: incomplete transactions), so use this feature
8012 with extreme care. Sessions killed because a server comes up are logged
8013 with an 'U' termination code (for "Up").
8014
8015 Actions are disabled by default
8016
8017 Supported in default-server: Yes
8018
Krzysztof Piotr Oledzkic53601c2010-01-06 10:50:42 +01008019port <port>
Willy Tarreauc57f0e22009-05-10 13:12:33 +02008020 Using the "port" parameter, it becomes possible to use a different port to
8021 send health-checks. On some servers, it may be desirable to dedicate a port
8022 to a specific component able to perform complex tests which are more suitable
8023 to health-checks than the application. It is common to run a simple script in
8024 inetd for instance. This parameter is ignored if the "check" parameter is not
8025 set. See also the "addr" parameter.
8026
Krzysztof Piotr Oledzkic53601c2010-01-06 10:50:42 +01008027 Supported in default-server: Yes
8028
Willy Tarreauc57f0e22009-05-10 13:12:33 +02008029redir <prefix>
8030 The "redir" parameter enables the redirection mode for all GET and HEAD
8031 requests addressing this server. This means that instead of having HAProxy
8032 forward the request to the server, it will send an "HTTP 302" response with
8033 the "Location" header composed of this prefix immediately followed by the
8034 requested URI beginning at the leading '/' of the path component. That means
8035 that no trailing slash should be used after <prefix>. All invalid requests
8036 will be rejected, and all non-GET or HEAD requests will be normally served by
8037 the server. Note that since the response is completely forged, no header
Krzysztof Piotr Oledzkif8645332009-12-13 21:55:50 +01008038 mangling nor cookie insertion is possible in the response. However, cookies in
Willy Tarreauc57f0e22009-05-10 13:12:33 +02008039 requests are still analysed, making this solution completely usable to direct
8040 users to a remote location in case of local disaster. Main use consists in
8041 increasing bandwidth for static servers by having the clients directly
8042 connect to them. Note: never use a relative location here, it would cause a
8043 loop between the client and HAProxy!
8044
8045 Example : server srv1 192.168.1.1:80 redir http://image1.mydomain.com check
8046
Krzysztof Piotr Oledzkic53601c2010-01-06 10:50:42 +01008047 Supported in default-server: No
8048
8049rise <count>
Willy Tarreauc57f0e22009-05-10 13:12:33 +02008050 The "rise" parameter states that a server will be considered as operational
8051 after <count> consecutive successful health checks. This value defaults to 2
8052 if unspecified. See also the "check", "inter" and "fall" parameters.
8053
Krzysztof Piotr Oledzkic53601c2010-01-06 10:50:42 +01008054 Supported in default-server: Yes
8055
Willy Tarreau5ab04ec2011-03-20 10:32:26 +01008056send-proxy
8057 The "send-proxy" parameter enforces use of the PROXY protocol over any
8058 connection established to this server. The PROXY protocol informs the other
8059 end about the layer 3/4 addresses of the incoming connection, so that it can
8060 know the client's address or the public address it accessed to, whatever the
8061 upper layer protocol. For connections accepted by an "accept-proxy" listener,
8062 the advertised address will be used. Only TCPv4 and TCPv6 address families
8063 are supported. Other families such as Unix sockets, will report an UNKNOWN
8064 family. Servers using this option can fully be chained to another instance of
8065 haproxy listening with an "accept-proxy" setting. This setting must not be
Willy Tarreau6c16adc2012-10-05 00:04:16 +02008066 used if the server isn't aware of the protocol. When health checks are sent
8067 to the server, the PROXY protocol is automatically used when this option is
8068 set, unless there is an explicit "port" or "addr" directive, in which case an
8069 explicit "check-send-proxy" directive would also be needed to use the PROXY
8070 protocol. See also the "accept-proxy" option of the "bind" keyword.
Willy Tarreau5ab04ec2011-03-20 10:32:26 +01008071
8072 Supported in default-server: No
8073
Krzysztof Piotr Oledzkic53601c2010-01-06 10:50:42 +01008074slowstart <start_time_in_ms>
Willy Tarreauc57f0e22009-05-10 13:12:33 +02008075 The "slowstart" parameter for a server accepts a value in milliseconds which
8076 indicates after how long a server which has just come back up will run at
8077 full speed. Just as with every other time-based parameter, it can be entered
8078 in any other explicit unit among { us, ms, s, m, h, d }. The speed grows
8079 linearly from 0 to 100% during this time. The limitation applies to two
8080 parameters :
8081
8082 - maxconn: the number of connections accepted by the server will grow from 1
8083 to 100% of the usual dynamic limit defined by (minconn,maxconn,fullconn).
8084
8085 - weight: when the backend uses a dynamic weighted algorithm, the weight
8086 grows linearly from 1 to 100%. In this case, the weight is updated at every
8087 health-check. For this reason, it is important that the "inter" parameter
8088 is smaller than the "slowstart", in order to maximize the number of steps.
8089
8090 The slowstart never applies when haproxy starts, otherwise it would cause
8091 trouble to running servers. It only applies when a server has been previously
8092 seen as failed.
8093
Krzysztof Piotr Oledzkic53601c2010-01-06 10:50:42 +01008094 Supported in default-server: Yes
8095
Willy Tarreauc6f4ce82009-06-10 11:09:37 +02008096source <addr>[:<pl>[-<ph>]] [usesrc { <addr2>[:<port2>] | client | clientip } ]
Willy Tarreaubce70882009-09-07 11:51:47 +02008097source <addr>[:<port>] [usesrc { <addr2>[:<port2>] | hdr_ip(<hdr>[,<occ>]) } ]
Willy Tarreauc6f4ce82009-06-10 11:09:37 +02008098source <addr>[:<pl>[-<ph>]] [interface <name>] ...
Willy Tarreauc57f0e22009-05-10 13:12:33 +02008099 The "source" parameter sets the source address which will be used when
8100 connecting to the server. It follows the exact same parameters and principle
8101 as the backend "source" keyword, except that it only applies to the server
8102 referencing it. Please consult the "source" keyword for details.
8103
Willy Tarreauc6f4ce82009-06-10 11:09:37 +02008104 Additionally, the "source" statement on a server line allows one to specify a
8105 source port range by indicating the lower and higher bounds delimited by a
8106 dash ('-'). Some operating systems might require a valid IP address when a
8107 source port range is specified. It is permitted to have the same IP/range for
8108 several servers. Doing so makes it possible to bypass the maximum of 64k
8109 total concurrent connections. The limit will then reach 64k connections per
8110 server.
8111
Krzysztof Piotr Oledzkic53601c2010-01-06 10:50:42 +01008112 Supported in default-server: No
8113
Willy Tarreaua0ee1d02012-09-10 09:01:23 +02008114ssl
Willy Tarreau44f65392013-06-25 07:56:20 +02008115 This option enables SSL ciphering on outgoing connections to the server. It
8116 is critical to verify server certificates using "verify" when using SSL to
8117 connect to servers, otherwise the communication is prone to trivial man in
8118 the-middle attacks rendering SSL useless. When this option is used, health
8119 checks are automatically sent in SSL too unless there is a "port" or an
8120 "addr" directive indicating the check should be sent to a different location.
8121 See the "check-ssl" optino to force SSL health checks.
Willy Tarreau763a95b2012-10-04 23:15:39 +02008122
8123 Supported in default-server: No
Willy Tarreaua0ee1d02012-09-10 09:01:23 +02008124
Willy Tarreauc57f0e22009-05-10 13:12:33 +02008125track [<proxy>/]<server>
8126 This option enables ability to set the current state of the server by
8127 tracking another one. Only a server with checks enabled can be tracked
8128 so it is not possible for example to track a server that tracks another
8129 one. If <proxy> is omitted the current one is used. If disable-on-404 is
8130 used, it has to be enabled on both proxies.
8131
Krzysztof Piotr Oledzkic53601c2010-01-06 10:50:42 +01008132 Supported in default-server: No
8133
Emeric Brunef42d922012-10-11 16:11:36 +02008134verify [none|required]
8135 This setting is only available when support for OpenSSL was built in. If set
8136 to 'none', server certificate is not verified. This is the default. In the
8137 other case, The certificate provided by the server is verified using CAs from
8138 'ca-file' and optional CRLs from 'crl-file'. On verify failure the handshake
Willy Tarreau44f65392013-06-25 07:56:20 +02008139 is aborted. It is critically important to verify server certificates when
8140 using SSL to connect to servers, otherwise the communication is prone to
8141 trivial man-in-the-middle attacks rendering SSL totally useless.
Emeric Brunef42d922012-10-11 16:11:36 +02008142
8143 Supported in default-server: No
8144
Evan Broderbe554312013-06-27 00:05:25 -07008145verifyhost <hostname>
8146 This setting is only available when support for OpenSSL was built in, and
8147 only takes effect if 'verify required' is also specified. When set, the
8148 hostnames in the subject and subjectAlternateNames of the certificate
8149 provided by the server are checked. If none of the hostnames in the
8150 certificate match the specified hostname, the handshake is aborted. The
8151 hostnames in the server-provided certificate may include wildcards.
8152
8153 Supported in default-server: No
8154
Krzysztof Piotr Oledzkic53601c2010-01-06 10:50:42 +01008155weight <weight>
Willy Tarreauc57f0e22009-05-10 13:12:33 +02008156 The "weight" parameter is used to adjust the server's weight relative to
8157 other servers. All servers will receive a load proportional to their weight
8158 relative to the sum of all weights, so the higher the weight, the higher the
Willy Tarreau6704d672009-06-15 10:56:05 +02008159 load. The default weight is 1, and the maximal value is 256. A value of 0
8160 means the server will not participate in load-balancing but will still accept
8161 persistent connections. If this parameter is used to distribute the load
8162 according to server's capacity, it is recommended to start with values which
8163 can both grow and shrink, for instance between 10 and 100 to leave enough
8164 room above and below for later adjustments.
Willy Tarreauc57f0e22009-05-10 13:12:33 +02008165
Krzysztof Piotr Oledzkic53601c2010-01-06 10:50:42 +01008166 Supported in default-server: Yes
8167
Willy Tarreauc57f0e22009-05-10 13:12:33 +02008168
81696. HTTP header manipulation
8170---------------------------
8171
8172In HTTP mode, it is possible to rewrite, add or delete some of the request and
8173response headers based on regular expressions. It is also possible to block a
8174request or a response if a particular header matches a regular expression,
8175which is enough to stop most elementary protocol attacks, and to protect
8176against information leak from the internal network. But there is a limitation
8177to this : since HAProxy's HTTP engine does not support keep-alive, only headers
8178passed during the first request of a TCP session will be seen. All subsequent
8179headers will be considered data only and not analyzed. Furthermore, HAProxy
8180never touches data contents, it stops analysis at the end of headers.
8181
Willy Tarreau816b9792009-09-15 21:25:21 +02008182There is an exception though. If HAProxy encounters an "Informational Response"
8183(status code 1xx), it is able to process all rsp* rules which can allow, deny,
8184rewrite or delete a header, but it will refuse to add a header to any such
8185messages as this is not HTTP-compliant. The reason for still processing headers
8186in such responses is to stop and/or fix any possible information leak which may
Krzysztof Piotr Oledzkif8645332009-12-13 21:55:50 +01008187happen, for instance because another downstream equipment would unconditionally
Willy Tarreau816b9792009-09-15 21:25:21 +02008188add a header, or if a server name appears there. When such messages are seen,
8189normal processing still occurs on the next non-informational messages.
8190
Willy Tarreauc57f0e22009-05-10 13:12:33 +02008191This section covers common usage of the following keywords, described in detail
8192in section 4.2 :
8193
8194 - reqadd <string>
8195 - reqallow <search>
8196 - reqiallow <search>
8197 - reqdel <search>
8198 - reqidel <search>
8199 - reqdeny <search>
8200 - reqideny <search>
8201 - reqpass <search>
8202 - reqipass <search>
8203 - reqrep <search> <replace>
8204 - reqirep <search> <replace>
8205 - reqtarpit <search>
8206 - reqitarpit <search>
8207 - rspadd <string>
8208 - rspdel <search>
8209 - rspidel <search>
8210 - rspdeny <search>
8211 - rspideny <search>
8212 - rsprep <search> <replace>
8213 - rspirep <search> <replace>
8214
8215With all these keywords, the same conventions are used. The <search> parameter
8216is a POSIX extended regular expression (regex) which supports grouping through
8217parenthesis (without the backslash). Spaces and other delimiters must be
8218prefixed with a backslash ('\') to avoid confusion with a field delimiter.
8219Other characters may be prefixed with a backslash to change their meaning :
8220
8221 \t for a tab
8222 \r for a carriage return (CR)
8223 \n for a new line (LF)
8224 \ to mark a space and differentiate it from a delimiter
8225 \# to mark a sharp and differentiate it from a comment
8226 \\ to use a backslash in a regex
8227 \\\\ to use a backslash in the text (*2 for regex, *2 for haproxy)
8228 \xXX to write the ASCII hex code XX as in the C language
8229
8230The <replace> parameter contains the string to be used to replace the largest
8231portion of text matching the regex. It can make use of the special characters
8232above, and can reference a substring which is delimited by parenthesis in the
8233regex, by writing a backslash ('\') immediately followed by one digit from 0 to
82349 indicating the group position (0 designating the entire line). This practice
8235is very common to users of the "sed" program.
8236
8237The <string> parameter represents the string which will systematically be added
8238after the last header line. It can also use special character sequences above.
8239
8240Notes related to these keywords :
8241---------------------------------
8242 - these keywords are not always convenient to allow/deny based on header
8243 contents. It is strongly recommended to use ACLs with the "block" keyword
8244 instead, resulting in far more flexible and manageable rules.
8245
8246 - lines are always considered as a whole. It is not possible to reference
8247 a header name only or a value only. This is important because of the way
8248 headers are written (notably the number of spaces after the colon).
8249
8250 - the first line is always considered as a header, which makes it possible to
8251 rewrite or filter HTTP requests URIs or response codes, but in turn makes
8252 it harder to distinguish between headers and request line. The regex prefix
8253 ^[^\ \t]*[\ \t] matches any HTTP method followed by a space, and the prefix
8254 ^[^ \t:]*: matches any header name followed by a colon.
8255
8256 - for performances reasons, the number of characters added to a request or to
8257 a response is limited at build time to values between 1 and 4 kB. This
8258 should normally be far more than enough for most usages. If it is too short
8259 on occasional usages, it is possible to gain some space by removing some
8260 useless headers before adding new ones.
8261
Krzysztof Piotr Oledzkif8645332009-12-13 21:55:50 +01008262 - keywords beginning with "reqi" and "rspi" are the same as their counterpart
Willy Tarreauc57f0e22009-05-10 13:12:33 +02008263 without the 'i' letter except that they ignore case when matching patterns.
8264
8265 - when a request passes through a frontend then a backend, all req* rules
8266 from the frontend will be evaluated, then all req* rules from the backend
8267 will be evaluated. The reverse path is applied to responses.
8268
8269 - req* statements are applied after "block" statements, so that "block" is
8270 always the first one, but before "use_backend" in order to permit rewriting
Willy Tarreaud72758d2010-01-12 10:42:19 +01008271 before switching.
Willy Tarreauc57f0e22009-05-10 13:12:33 +02008272
8273
Willy Tarreau74ca5042013-06-11 23:12:07 +020082747. Using ACLs and fetching samples
8275----------------------------------
8276
8277Haproxy is capable of extracting data from request or response streams, from
8278client or server information, from tables, environmental information etc...
8279The action of extracting such data is called fetching a sample. Once retrieved,
8280these samples may be used for various purposes such as a key to a stick-table,
8281but most common usages consist in matching them against predefined constant
8282data called patterns.
8283
8284
82857.1. ACL basics
8286---------------
Willy Tarreauc57f0e22009-05-10 13:12:33 +02008287
8288The use of Access Control Lists (ACL) provides a flexible solution to perform
8289content switching and generally to take decisions based on content extracted
8290from the request, the response or any environmental status. The principle is
8291simple :
8292
Willy Tarreau74ca5042013-06-11 23:12:07 +02008293 - extract a data sample from a stream, table or the environment
8294 - apply one or multiple pattern matching methods on this sample
8295 - perform actions only when a pattern matches the sample
Willy Tarreauc57f0e22009-05-10 13:12:33 +02008296
Willy Tarreau74ca5042013-06-11 23:12:07 +02008297The actions generally consist in blocking a request, selecting a backend, or
8298adding a header.
Willy Tarreauc57f0e22009-05-10 13:12:33 +02008299
8300In order to define a test, the "acl" keyword is used. The syntax is :
8301
Willy Tarreau74ca5042013-06-11 23:12:07 +02008302 acl <aclname> <criterion> [flags] [operator] [<value>] ...
Willy Tarreauc57f0e22009-05-10 13:12:33 +02008303
8304This creates a new ACL <aclname> or completes an existing one with new tests.
8305Those tests apply to the portion of request/response specified in <criterion>
8306and may be adjusted with optional flags [flags]. Some criteria also support
8307an operator which may be specified before the set of values. The values are
8308of the type supported by the criterion, and are separated by spaces.
8309
8310ACL names must be formed from upper and lower case letters, digits, '-' (dash),
8311'_' (underscore) , '.' (dot) and ':' (colon). ACL names are case-sensitive,
8312which means that "my_acl" and "My_Acl" are two different ACLs.
8313
8314There is no enforced limit to the number of ACLs. The unused ones do not affect
8315performance, they just consume a small amount of memory.
8316
Willy Tarreau74ca5042013-06-11 23:12:07 +02008317The criterion generally is the name of a sample fetch method, or one of its ACL
8318specific declinations. The default test method is implied by the output type of
8319this sample fetch method. The ACL declinations can describe alternate matching
8320methods of a same sample fetch method.
8321
8322Sample fetch methods return data which can be of the following types :
8323 - boolean
8324 - integer (signed or unsigned)
8325 - IPv4 or IPv6 address
8326 - string
8327 - data block
8328
8329The ACL engine can match these types against patterns of the following types :
8330 - boolean
8331 - integer or integer range
8332 - IP address / network
8333 - string (exact, substring, suffix, prefix, subdir, domain)
8334 - regular expression
8335 - hex block
8336
Willy Tarreauc57f0e22009-05-10 13:12:33 +02008337The following ACL flags are currently supported :
8338
Willy Tarreau2b5285d2010-05-09 23:45:24 +02008339 -i : ignore case during matching of all subsequent patterns.
8340 -f : load patterns from a file.
Willy Tarreau74ca5042013-06-11 23:12:07 +02008341 -m : use a specific pattern matching method
Willy Tarreau6a06a402007-07-15 20:15:28 +02008342 -- : force end of flags. Useful when a string looks like one of the flags.
8343
Willy Tarreau74ca5042013-06-11 23:12:07 +02008344The "-f" flag is followed by the name of a file from which all lines will be
8345read as individual values. It is even possible to pass multiple "-f" arguments
8346if the patterns are to be loaded from multiple files. Empty lines as well as
8347lines beginning with a sharp ('#') will be ignored. All leading spaces and tabs
8348will be stripped. If it is absolutely necessary to insert a valid pattern
8349beginning with a sharp, just prefix it with a space so that it is not taken for
8350a comment. Depending on the data type and match method, haproxy may load the
8351lines into a binary tree, allowing very fast lookups. This is true for IPv4 and
8352exact string matching. In this case, duplicates will automatically be removed.
8353
8354Also, note that the "-i" flag applies to subsequent entries and not to entries
8355loaded from files preceding it. For instance :
8356
8357 acl valid-ua hdr(user-agent) -f exact-ua.lst -i -f generic-ua.lst test
8358
8359In this example, each line of "exact-ua.lst" will be exactly matched against
8360the "user-agent" header of the request. Then each line of "generic-ua" will be
8361case-insensitively matched. Then the word "test" will be insensitively matched
8362as well.
8363
8364The "-m" flag is used to select a specific pattern matching method on the input
8365sample. All ACL-specific criteria imply a pattern matching method and generally
8366do not need this flag. However, this flag is useful with generic sample fetch
8367methods to describe how they're going to be matched against the patterns. This
8368is required for sample fetches which return data type for which there is no
8369obvious matching method (eg: string or binary). When "-m" is specified and
8370followed by a pattern matching method name, this method is used instead of the
8371default one for the criterion. This makes it possible to match contents in ways
8372that were not initially planned, or with sample fetch methods which return a
8373string. The matching method also affects the way the patterns are parsed.
8374
8375There are some restrictions however. Not all methods can be used with all
8376sample fetch methods. Also, if "-m" is used in conjunction with "-f", it must
8377be placed first. The pattern matching method must be one of the following :
Willy Tarreau5adeda12013-03-31 22:13:34 +02008378
8379 - "found" : only check if the requested sample could be found in the stream,
8380 but do not compare it against any pattern. It is recommended not
Willy Tarreau74ca5042013-06-11 23:12:07 +02008381 to pass any pattern to avoid confusion. This matching method is
8382 particularly useful to detect presence of certain contents such
8383 as headers, cookies, etc... even if they are empty and without
8384 comparing them to anything nor counting them.
Willy Tarreau5adeda12013-03-31 22:13:34 +02008385
8386 - "bool" : check the value as a boolean. It can only be applied to fetches
8387 which return a boolean or integer value, and takes no pattern.
Willy Tarreau74ca5042013-06-11 23:12:07 +02008388 Value zero or false does not match, all other values do match.
Willy Tarreau5adeda12013-03-31 22:13:34 +02008389
8390 - "int" : match the value as an integer. It can be used with integer and
Willy Tarreau74ca5042013-06-11 23:12:07 +02008391 boolean samples. Boolean false is integer 0, true is integer 1.
Willy Tarreau5adeda12013-03-31 22:13:34 +02008392
8393 - "ip" : match the value as an IPv4 or IPv6 address. It is compatible
Willy Tarreau74ca5042013-06-11 23:12:07 +02008394 with IP address samples only, so it is implied and never needed.
Willy Tarreau5adeda12013-03-31 22:13:34 +02008395
8396 - "bin" : match the contents against an hexadecimal string representing a
8397 binary sequence. This may be used with binary or string samples.
8398
8399 - "len" : match the sample's length as an integer. This may be used with
8400 binary or string samples.
8401
Willy Tarreau74ca5042013-06-11 23:12:07 +02008402 - "str" : exact match : match the contents against a string. This may be
8403 used with binary or string samples.
Willy Tarreau5adeda12013-03-31 22:13:34 +02008404
Willy Tarreau74ca5042013-06-11 23:12:07 +02008405 - "sub" : substring match : check that the contents contain at least one of
8406 the provided string patterns. This may be used with binary or
8407 string samples.
Willy Tarreau5adeda12013-03-31 22:13:34 +02008408
Willy Tarreau74ca5042013-06-11 23:12:07 +02008409 - "reg" : regex match : match the contents against a list of regular
8410 expressions. This may be used with binary or string samples.
Willy Tarreau5adeda12013-03-31 22:13:34 +02008411
Willy Tarreau74ca5042013-06-11 23:12:07 +02008412 - "beg" : prefix match : check that the contents begin like the provided
8413 string patterns. This may be used with binary or string samples.
Willy Tarreau5adeda12013-03-31 22:13:34 +02008414
Willy Tarreau74ca5042013-06-11 23:12:07 +02008415 - "end" : suffix match : check that the contents end like the provided
8416 string patterns. This may be used with binary or string samples.
Willy Tarreau5adeda12013-03-31 22:13:34 +02008417
Willy Tarreau74ca5042013-06-11 23:12:07 +02008418 - "dir" : subdir match : check that a slash-delimited portion of the
8419 contents exactly matches one of the provided string patterns.
Willy Tarreau5adeda12013-03-31 22:13:34 +02008420 This may be used with binary or string samples.
8421
Willy Tarreau74ca5042013-06-11 23:12:07 +02008422 - "dom" : domain match : check that a dot-delimited portion of the contents
8423 exactly match one of the provided string patterns. This may be
8424 used with binary or string samples.
Willy Tarreau5adeda12013-03-31 22:13:34 +02008425
8426For example, to quickly detect the presence of cookie "JSESSIONID" in an HTTP
8427request, it is possible to do :
8428
8429 acl jsess_present cook(JSESSIONID) -m found
8430
8431In order to apply a regular expression on the 500 first bytes of data in the
8432buffer, one would use the following acl :
8433
8434 acl script_tag payload(0,500) -m reg -i <script>
8435
Willy Tarreau74ca5042013-06-11 23:12:07 +02008436All ACL-specific criteria imply a default matching method. Most often, these
8437criteria are composed by concatenating the name of the original sample fetch
8438method and the matching method. For example, "hdr_beg" applies the "beg" match
8439to samples retrieved using the "hdr" fetch method. Since all ACL-specific
8440criteria rely on a sample fetch method, it is always possible instead to use
8441the original sample fetch method and the explicit matching method using "-m".
Willy Tarreau2b5285d2010-05-09 23:45:24 +02008442
Willy Tarreau74ca5042013-06-11 23:12:07 +02008443If an alternate match is specified using "-m" on an ACL-specific criterion,
8444the mathing method is simply applied to the underlying sample fetch method. For
8445example, all ACLs below are exact equivalent :
Willy Tarreau2b5285d2010-05-09 23:45:24 +02008446
Willy Tarreau74ca5042013-06-11 23:12:07 +02008447 acl short_form hdr_beg(host) www.
8448 acl alternate1 hdr_beg(host) -m beg www.
8449 acl alternate2 hdr_dom(host) -m beg www.
8450 acl alternate3 hdr(host) -m beg www.
Willy Tarreau2b5285d2010-05-09 23:45:24 +02008451
Willy Tarreau2b5285d2010-05-09 23:45:24 +02008452
Willy Tarreau74ca5042013-06-11 23:12:07 +02008453The table below summarizes the compatibility matrix between sample fetch types
8454and the pattern types to fetch against. It indicates for each compatible
8455combination the name of the matching method to be used, prefixed with "*" when
8456the method is implicit and will work by default without "-m".
Willy Tarreau0ba27502007-12-24 16:55:16 +01008457
Willy Tarreau74ca5042013-06-11 23:12:07 +02008458 +-------------------------------------------------+
8459 | Input sample type |
8460 +----------------------+---------+---------+---------+---------+---------+
8461 | pattern type | boolean | integer | IP | string | binary |
8462 +----------------------+---------+---------+---------+---------+---------+
8463 | none (presence only) | found | found | found | found | found |
8464 +----------------------+---------+---------+---------+---------+---------+
8465 | none (boolean value) | *bool | bool | | | |
8466 +----------------------+---------+---------+---------+---------+---------+
8467 | integer (value) | int | *int | | | |
8468 +----------------------+---------+---------+---------+---------+---------+
8469 | integer (length) | | | | len | len |
8470 +----------------------+---------+---------+---------+---------+---------+
8471 | IP address | | | *ip | | |
8472 +----------------------+---------+---------+---------+---------+---------+
8473 | exact string | | | | str | str |
8474 +----------------------+---------+---------+---------+---------+---------+
8475 | prefix | | | | beg | beg |
8476 +----------------------+---------+---------+---------+---------+---------+
8477 | suffix | | | | end | end |
8478 +----------------------+---------+---------+---------+---------+---------+
8479 | substring | | | | sub | sub |
8480 +----------------------+---------+---------+---------+---------+---------+
8481 | subdir | | | | dir | dir |
8482 +----------------------+---------+---------+---------+---------+---------+
8483 | domain | | | | dom | dom |
8484 +----------------------+---------+---------+---------+---------+---------+
8485 | regex | | | | reg | reg |
8486 +----------------------+---------+---------+---------+---------+---------+
8487 | hex block | | | | bin | bin |
8488 +----------------------+---------+---------+---------+---------+---------+
Willy Tarreau6a06a402007-07-15 20:15:28 +02008489
8490
Willy Tarreau74ca5042013-06-11 23:12:07 +020084917.1.1. Matching booleans
8492------------------------
8493
8494In order to match a boolean, no value is needed and all values are ignored.
8495Boolean matching is used by default for all fetch methods of type "boolean".
8496When boolean matching is used, the fetched value is returned as-is, which means
8497that a boolean "true" will always match and a boolean "false" will never match.
8498
8499Boolean matching may also be enforced using "-m bool" on fetch methods which
8500return an integer value. Then, integer value 0 is converted to the boolean
8501"false" and all other values are converted to "true".
8502
Willy Tarreau6a06a402007-07-15 20:15:28 +02008503
Willy Tarreau74ca5042013-06-11 23:12:07 +020085047.1.2. Matching integers
8505------------------------
8506
8507Integer matching applies by default to integer fetch methods. It can also be
8508enforced on boolean fetches using "-m int". In this case, "false" is converted
8509to the integer 0, and "true" is converted to the integer 1.
8510
8511Integer matching also supports integer ranges and operators. Note that integer
8512matching only applies to positive values. A range is a value expressed with a
8513lower and an upper bound separated with a colon, both of which may be omitted.
Willy Tarreau6a06a402007-07-15 20:15:28 +02008514
8515For instance, "1024:65535" is a valid range to represent a range of
8516unprivileged ports, and "1024:" would also work. "0:1023" is a valid
8517representation of privileged ports, and ":1023" would also work.
8518
Willy Tarreau62644772008-07-16 18:36:06 +02008519As a special case, some ACL functions support decimal numbers which are in fact
8520two integers separated by a dot. This is used with some version checks for
8521instance. All integer properties apply to those decimal numbers, including
8522ranges and operators.
8523
Willy Tarreau6a06a402007-07-15 20:15:28 +02008524For an easier usage, comparison operators are also supported. Note that using
Willy Tarreau0ba27502007-12-24 16:55:16 +01008525operators with ranges does not make much sense and is strongly discouraged.
8526Similarly, it does not make much sense to perform order comparisons with a set
8527of values.
Willy Tarreau6a06a402007-07-15 20:15:28 +02008528
Willy Tarreau0ba27502007-12-24 16:55:16 +01008529Available operators for integer matching are :
Willy Tarreau6a06a402007-07-15 20:15:28 +02008530
8531 eq : true if the tested value equals at least one value
8532 ge : true if the tested value is greater than or equal to at least one value
8533 gt : true if the tested value is greater than at least one value
8534 le : true if the tested value is less than or equal to at least one value
8535 lt : true if the tested value is less than at least one value
8536
Willy Tarreau0ba27502007-12-24 16:55:16 +01008537For instance, the following ACL matches any negative Content-Length header :
Willy Tarreau6a06a402007-07-15 20:15:28 +02008538
8539 acl negative-length hdr_val(content-length) lt 0
8540
Willy Tarreau62644772008-07-16 18:36:06 +02008541This one matches SSL versions between 3.0 and 3.1 (inclusive) :
8542
8543 acl sslv3 req_ssl_ver 3:3.1
8544
Willy Tarreau6a06a402007-07-15 20:15:28 +02008545
Willy Tarreau74ca5042013-06-11 23:12:07 +020085467.1.3. Matching strings
8547-----------------------
8548
8549String matching applies to string or binary fetch methods, and exists in 6
8550different forms :
8551
8552 - exact match (-m str) : the extracted string must exactly match the
8553 patterns ;
8554
8555 - substring match (-m sub) : the patterns are looked up inside the
8556 extracted string, and the ACL matches if any of them is found inside ;
8557
8558 - prefix match (-m beg) : the patterns are compared with the beginning of
8559 the extracted string, and the ACL matches if any of them matches.
8560
8561 - suffix match (-m end) : the patterns are compared with the end of the
8562 extracted string, and the ACL matches if any of them matches.
8563
8564 - subdir match (-m sub) : the patterns are looked up inside the extracted
8565 string, delimited with slashes ("/"), and the ACL matches if any of them
8566 matches.
8567
8568 - domain match (-m dom) : the patterns are looked up inside the extracted
8569 string, delimited with dots ("."), and the ACL matches if any of them
8570 matches.
Willy Tarreau6a06a402007-07-15 20:15:28 +02008571
8572String matching applies to verbatim strings as they are passed, with the
8573exception of the backslash ("\") which makes it possible to escape some
8574characters such as the space. If the "-i" flag is passed before the first
8575string, then the matching will be performed ignoring the case. In order
8576to match the string "-i", either set it second, or pass the "--" flag
Willy Tarreau0ba27502007-12-24 16:55:16 +01008577before the first string. Same applies of course to match the string "--".
Willy Tarreau6a06a402007-07-15 20:15:28 +02008578
8579
Willy Tarreau74ca5042013-06-11 23:12:07 +020085807.1.4. Matching regular expressions (regexes)
8581---------------------------------------------
Willy Tarreau6a06a402007-07-15 20:15:28 +02008582
8583Just like with string matching, regex matching applies to verbatim strings as
8584they are passed, with the exception of the backslash ("\") which makes it
8585possible to escape some characters such as the space. If the "-i" flag is
8586passed before the first regex, then the matching will be performed ignoring
8587the case. In order to match the string "-i", either set it second, or pass
Willy Tarreau0ba27502007-12-24 16:55:16 +01008588the "--" flag before the first string. Same principle applies of course to
8589match the string "--".
Willy Tarreau6a06a402007-07-15 20:15:28 +02008590
8591
Willy Tarreau74ca5042013-06-11 23:12:07 +020085927.1.5. Matching arbitrary data blocks
8593-------------------------------------
8594
8595It is possible to match some extracted samples against a binary block which may
8596not safely be represented as a string. For this, the patterns must be passed as
8597a series of hexadecimal digits in an even number, when the match method is set
8598to binary. Each sequence of two digits will represent a byte. The hexadecimal
8599digits may be used upper or lower case.
8600
8601Example :
8602 # match "Hello\n" in the input stream (\x48 \x65 \x6c \x6c \x6f \x0a)
8603 acl hello payload(0,6) -m bin 48656c6c6f0a
8604
8605
86067.1.6. Matching IPv4 and IPv6 addresses
8607---------------------------------------
Willy Tarreau6a06a402007-07-15 20:15:28 +02008608
8609IPv4 addresses values can be specified either as plain addresses or with a
8610netmask appended, in which case the IPv4 address matches whenever it is
8611within the network. Plain addresses may also be replaced with a resolvable
Willy Tarreaud2a4aa22008-01-31 15:28:22 +01008612host name, but this practice is generally discouraged as it makes it more
Willy Tarreau0ba27502007-12-24 16:55:16 +01008613difficult to read and debug configurations. If hostnames are used, you should
8614at least ensure that they are present in /etc/hosts so that the configuration
8615does not depend on any random DNS match at the moment the configuration is
8616parsed.
Willy Tarreau6a06a402007-07-15 20:15:28 +02008617
Willy Tarreauceb4ac92012-04-28 00:41:46 +02008618IPv6 may be entered in their usual form, with or without a netmask appended.
8619Only bit counts are accepted for IPv6 netmasks. In order to avoid any risk of
8620trouble with randomly resolved IP addresses, host names are never allowed in
8621IPv6 patterns.
8622
8623HAProxy is also able to match IPv4 addresses with IPv6 addresses in the
8624following situations :
8625 - tested address is IPv4, pattern address is IPv4, the match applies
8626 in IPv4 using the supplied mask if any.
8627 - tested address is IPv6, pattern address is IPv6, the match applies
8628 in IPv6 using the supplied mask if any.
8629 - tested address is IPv6, pattern address is IPv4, the match applies in IPv4
8630 using the pattern's mask if the IPv6 address matches with 2002:IPV4::,
8631 ::IPV4 or ::ffff:IPV4, otherwise it fails.
8632 - tested address is IPv4, pattern address is IPv6, the IPv4 address is first
8633 converted to IPv6 by prefixing ::ffff: in front of it, then the match is
8634 applied in IPv6 using the supplied IPv6 mask.
8635
Willy Tarreau74ca5042013-06-11 23:12:07 +02008636
86377.2. Using ACLs to form conditions
8638----------------------------------
8639
8640Some actions are only performed upon a valid condition. A condition is a
8641combination of ACLs with operators. 3 operators are supported :
8642
8643 - AND (implicit)
8644 - OR (explicit with the "or" keyword or the "||" operator)
8645 - Negation with the exclamation mark ("!")
Willy Tarreau6a06a402007-07-15 20:15:28 +02008646
Willy Tarreau74ca5042013-06-11 23:12:07 +02008647A condition is formed as a disjunctive form:
Willy Tarreau6a06a402007-07-15 20:15:28 +02008648
Willy Tarreau74ca5042013-06-11 23:12:07 +02008649 [!]acl1 [!]acl2 ... [!]acln { or [!]acl1 [!]acl2 ... [!]acln } ...
Willy Tarreaubef91e72013-03-31 23:14:46 +02008650
Willy Tarreau74ca5042013-06-11 23:12:07 +02008651Such conditions are generally used after an "if" or "unless" statement,
8652indicating when the condition will trigger the action.
Willy Tarreaubef91e72013-03-31 23:14:46 +02008653
Willy Tarreau74ca5042013-06-11 23:12:07 +02008654For instance, to block HTTP requests to the "*" URL with methods other than
8655"OPTIONS", as well as POST requests without content-length, and GET or HEAD
8656requests with a content-length greater than 0, and finally every request which
8657is not either GET/HEAD/POST/OPTIONS !
8658
8659 acl missing_cl hdr_cnt(Content-length) eq 0
8660 block if HTTP_URL_STAR !METH_OPTIONS || METH_POST missing_cl
8661 block if METH_GET HTTP_CONTENT
8662 block unless METH_GET or METH_POST or METH_OPTIONS
8663
8664To select a different backend for requests to static contents on the "www" site
8665and to every request on the "img", "video", "download" and "ftp" hosts :
8666
8667 acl url_static path_beg /static /images /img /css
8668 acl url_static path_end .gif .png .jpg .css .js
8669 acl host_www hdr_beg(host) -i www
8670 acl host_static hdr_beg(host) -i img. video. download. ftp.
8671
8672 # now use backend "static" for all static-only hosts, and for static urls
8673 # of host "www". Use backend "www" for the rest.
8674 use_backend static if host_static or host_www url_static
8675 use_backend www if host_www
8676
8677It is also possible to form rules using "anonymous ACLs". Those are unnamed ACL
8678expressions that are built on the fly without needing to be declared. They must
8679be enclosed between braces, with a space before and after each brace (because
8680the braces must be seen as independent words). Example :
8681
8682 The following rule :
8683
8684 acl missing_cl hdr_cnt(Content-length) eq 0
8685 block if METH_POST missing_cl
8686
8687 Can also be written that way :
8688
8689 block if METH_POST { hdr_cnt(Content-length) eq 0 }
8690
8691It is generally not recommended to use this construct because it's a lot easier
8692to leave errors in the configuration when written that way. However, for very
8693simple rules matching only one source IP address for instance, it can make more
8694sense to use them than to declare ACLs with random names. Another example of
8695good use is the following :
8696
8697 With named ACLs :
8698
8699 acl site_dead nbsrv(dynamic) lt 2
8700 acl site_dead nbsrv(static) lt 2
8701 monitor fail if site_dead
8702
8703 With anonymous ACLs :
8704
8705 monitor fail if { nbsrv(dynamic) lt 2 } || { nbsrv(static) lt 2 }
8706
8707See section 4.2 for detailed help on the "block" and "use_backend" keywords.
8708
8709
87107.3. Fetching samples
8711---------------------
8712
8713Historically, sample fetch methods were only used to retrieve data to match
8714against patterns using ACLs. With the arrival of stick-tables, a new class of
8715sample fetch methods was created, most often sharing the same syntax as their
8716ACL counterpart. These sample fetch methods are also known as "fetches". As
8717of now, ACLs and fetches have converged. All ACL fetch methods have been made
8718available as fetch methods, and ACLs may use any sample fetch method as well.
8719
8720This section details all available sample fetch methods and their output type.
8721Some sample fetch methods have deprecated aliases that are used to maintain
8722compatibility with existing configurations. They are then explicitly marked as
8723deprecated and should not be used in new setups.
8724
8725The ACL derivatives are also indicated when available, with their respective
8726matching methods. These ones all have a well defined default pattern matching
8727method, so it is never necessary (though allowed) to pass the "-m" option to
8728indicate how the sample will be matched using ACLs.
8729
8730As indicated in the sample type versus matching compatibility matrix above,
8731when using a generic sample fetch method in an ACL, the "-m" option is
8732mandatory unless the sample type is one of boolean, integer, IPv4 or IPv6. When
8733the same keyword exists as an ACL keyword and as a standard fetch method, the
8734ACL engine will automatically pick the ACL-only one by default.
8735
8736Some of these keywords support one or multiple mandatory arguments, and one or
8737multiple optional arguments. These arguments are strongly typed and are checked
8738when the configuration is parsed so that there is no risk of running with an
8739incorrect argument (eg: an unresolved backend name). Fetch function arguments
8740are passed between parenthesis and are delimited by commas. When an argument
8741is optional, it will be indicated below between square brackets ('[ ]'). When
8742all arguments are optional, the parenthesis may be omitted.
8743
8744Thus, the syntax of a standard sample fetch method is one of the following :
8745 - name
8746 - name(arg1)
8747 - name(arg1,arg2)
8748
8749At the moment, the stickiness features are the most advanced users of the
8750sample fetch system. The "stick on", and "stick store-request" directives
8751support sample fetch rules which allow a list of transformations to be applied
8752on top of the fetched sample, and the finaly result is automatically converted
8753to the type of the table. These transformations are enumerated as a series
Willy Tarreau833cc792013-07-24 15:34:19 +02008754of specific keywords after the sample fetch method. These keywords may equally
8755be appended immediately after the fetch keyword's argument, delimited by a
8756comma. These keywords can also support some arguments (eg: a netmask) which
8757must be passed in parenthesis.
Willy Tarreau0ba27502007-12-24 16:55:16 +01008758
Willy Tarreau74ca5042013-06-11 23:12:07 +02008759The currently available list of transformation keywords include :
Willy Tarreau0ba27502007-12-24 16:55:16 +01008760
Willy Tarreau74ca5042013-06-11 23:12:07 +02008761 lower Convert a string sample to lower case. This can only be placed
8762 after a string sample fetch function or after a transformation
8763 keyword returning a string type. The result is of type string.
Willy Tarreau6a06a402007-07-15 20:15:28 +02008764
Willy Tarreau74ca5042013-06-11 23:12:07 +02008765 upper Convert a string sample to upper case. This can only be placed
8766 after a string sample fetch function or after a transformation
8767 keyword returning a string type. The result is of type string.
Willy Tarreau6a06a402007-07-15 20:15:28 +02008768
Willy Tarreau74ca5042013-06-11 23:12:07 +02008769 ipmask(<mask>) Apply a mask to an IPv4 address, and use the result for
8770 lookups and storage. This can be used to make all hosts within
8771 a certain mask to share the same table entries and as such use
8772 the same server. The mask can be passed in dotted form (eg:
8773 255.255.255.0) or in CIDR form (eg: 24).
8774
Willy Tarreau276fae92013-07-25 14:36:01 +02008775 http_date([<offset>])
8776 Converts an integer supposed to contain a date since epoch to
8777 a string representing this date in a format suitable for use
8778 in HTTP header fields. If an offset value is specified, then
8779 it is a number of seconds that is added to the date before the
8780 conversion is operated. This is particularly useful to emit
8781 Date header fields, Expires values in responses when combined
8782 with a positive offset, or Last-Modified values when the
8783 offset is negative.
Willy Tarreau74ca5042013-06-11 23:12:07 +02008784
87857.3.1. Fetching samples from internal states
8786--------------------------------------------
8787
8788A first set of sample fetch methods applies to internal information which does
8789not even relate to any client information. These ones are sometimes used with
8790"monitor-fail" directives to report an internal status to external watchers.
8791The sample fetch methods described in this section are usable anywhere.
8792
8793always_false : boolean
8794 Always returns the boolean "false" value. It may be used with ACLs as a
8795 temporary replacement for another one when adjusting configurations.
8796
8797always_true : boolean
8798 Always returns the boolean "true" value. It may be used with ACLs as a
8799 temporary replacement for another one when adjusting configurations.
8800
8801avg_queue([<backend>]) : integer
Willy Tarreaud63335a2010-02-26 12:56:52 +01008802 Returns the total number of queued connections of the designated backend
Willy Tarreau74ca5042013-06-11 23:12:07 +02008803 divided by the number of active servers. The current backend is used if no
8804 backend is specified. This is very similar to "queue" except that the size of
8805 the farm is considered, in order to give a more accurate measurement of the
8806 time it may take for a new connection to be processed. The main usage is with
8807 ACL to return a sorry page to new users when it becomes certain they will get
8808 a degraded service, or to pass to the backend servers in a header so that
8809 they decide to work in degraded mode or to disable some functions to speed up
8810 the processing a bit. Note that in the event there would not be any active
8811 server anymore, twice the number of queued connections would be considered as
8812 the measured value. This is a fair estimate, as we expect one server to get
8813 back soon anyway, but we still prefer to send new traffic to another backend
8814 if in better shape. See also the "queue", "be_conn", and "be_sess_rate"
8815 sample fetches.
Krzysztof Piotr Oledzki346f76d2010-01-12 21:59:30 +01008816
Willy Tarreau74ca5042013-06-11 23:12:07 +02008817be_conn([<backend>]) : integer
Willy Tarreaua36af912009-10-10 12:02:45 +02008818 Applies to the number of currently established connections on the backend,
8819 possibly including the connection being evaluated. If no backend name is
8820 specified, the current one is used. But it is also possible to check another
8821 backend. It can be used to use a specific farm when the nominal one is full.
8822 See also the "fe_conn", "queue" and "be_sess_rate" criteria.
Willy Tarreau6a06a402007-07-15 20:15:28 +02008823
Willy Tarreau74ca5042013-06-11 23:12:07 +02008824be_sess_rate([<backend>]) : integer
8825 Returns an integer value corresponding to the sessions creation rate on the
8826 backend, in number of new sessions per second. This is used with ACLs to
8827 switch to an alternate backend when an expensive or fragile one reaches too
8828 high a session rate, or to limit abuse of service (eg. prevent sucking of an
8829 online dictionary). It can also be useful to add this element to logs using a
8830 log-format directive.
Willy Tarreaud63335a2010-02-26 12:56:52 +01008831
8832 Example :
8833 # Redirect to an error page if the dictionary is requested too often
8834 backend dynamic
8835 mode http
8836 acl being_scanned be_sess_rate gt 100
8837 redirect location /denied.html if being_scanned
Willy Tarreau0ba27502007-12-24 16:55:16 +01008838
Willy Tarreau74ca5042013-06-11 23:12:07 +02008839connslots([<backend>]) : integer
8840 Returns an integer value corresponding to the number of connection slots
8841 still available in the backend, by totalizing the maximum amount of
8842 connections on all servers and the maximum queue size. This is probably only
8843 used with ACLs.
Tait Clarridge7896d522012-12-05 21:39:31 -05008844
Jeffrey 'jf' Lim5051d7b2008-09-04 01:03:03 +08008845 The basic idea here is to be able to measure the number of connection "slots"
Willy Tarreau55165fe2009-05-10 12:02:55 +02008846 still available (connection + queue), so that anything beyond that (intended
Jeffrey 'jf' Lim5051d7b2008-09-04 01:03:03 +08008847 usage; see "use_backend" keyword) can be redirected to a different backend.
8848
Willy Tarreau55165fe2009-05-10 12:02:55 +02008849 'connslots' = number of available server connection slots, + number of
8850 available server queue slots.
Jeffrey 'jf' Lim5051d7b2008-09-04 01:03:03 +08008851
Willy Tarreaua36af912009-10-10 12:02:45 +02008852 Note that while "fe_conn" may be used, "connslots" comes in especially
Willy Tarreau55165fe2009-05-10 12:02:55 +02008853 useful when you have a case of traffic going to one single ip, splitting into
Willy Tarreau74ca5042013-06-11 23:12:07 +02008854 multiple backends (perhaps using ACLs to do name-based load balancing) and
Willy Tarreau55165fe2009-05-10 12:02:55 +02008855 you want to be able to differentiate between different backends, and their
8856 available "connslots". Also, whereas "nbsrv" only measures servers that are
Willy Tarreau74ca5042013-06-11 23:12:07 +02008857 actually *down*, this fetch is more fine-grained and looks into the number of
Willy Tarreaua36af912009-10-10 12:02:45 +02008858 available connection slots as well. See also "queue" and "avg_queue".
Jeffrey 'jf' Lim5051d7b2008-09-04 01:03:03 +08008859
Willy Tarreau55165fe2009-05-10 12:02:55 +02008860 OTHER CAVEATS AND NOTES: at this point in time, the code does not take care
8861 of dynamic connections. Also, if any of the server maxconn, or maxqueue is 0,
Willy Tarreau74ca5042013-06-11 23:12:07 +02008862 then this fetch clearly does not make sense, in which case the value returned
Willy Tarreau55165fe2009-05-10 12:02:55 +02008863 will be -1.
Jeffrey 'jf' Lim5051d7b2008-09-04 01:03:03 +08008864
Willy Tarreau6236d3a2013-07-25 14:28:25 +02008865date([<offset>]) : integer
8866 Returns the current date as the epoch (number of seconds since 01/01/1970).
8867 If an offset value is specified, then it is a number of seconds that is added
8868 to the current date before returning the value. This is particularly useful
8869 to compute relative dates, as both positive and negative offsets are allowed.
Willy Tarreau276fae92013-07-25 14:36:01 +02008870 It is useful combined with the http_date converter.
8871
8872 Example :
8873
8874 # set an expires header to now+1 hour in every response
8875 http-response set-header Expires %[date(3600),http_date]
Willy Tarreau6236d3a2013-07-25 14:28:25 +02008876
Willy Tarreau595ec542013-06-12 21:34:28 +02008877env(<name>) : string
8878 Returns a string containing the value of environment variable <name>. As a
8879 reminder, environment variables are per-process and are sampled when the
8880 process starts. This can be useful to pass some information to a next hop
8881 server, or with ACLs to take specific action when the process is started a
8882 certain way.
8883
8884 Examples :
8885 # Pass the Via header to next hop with the local hostname in it
8886 http-request add-header Via 1.1\ %[env(HOSTNAME)]
8887
8888 # reject cookie-less requests when the STOP environment variable is set
8889 http-request deny if !{ cook(SESSIONID) -m found } { env(STOP) -m found }
8890
Willy Tarreau74ca5042013-06-11 23:12:07 +02008891fe_conn([<frontend>]) : integer
8892 Returns the number of currently established connections on the frontend,
Willy Tarreaud63335a2010-02-26 12:56:52 +01008893 possibly including the connection being evaluated. If no frontend name is
8894 specified, the current one is used. But it is also possible to check another
Willy Tarreau74ca5042013-06-11 23:12:07 +02008895 frontend. It can be used to return a sorry page before hard-blocking, or to
8896 use a specific backend to drain new requests when the farm is considered
8897 full. This is mostly used with ACLs but can also be used to pass some
8898 statistics to servers in HTTP headers. See also the "dst_conn", "be_conn",
8899 "fe_sess_rate" fetches.
Willy Tarreaua36af912009-10-10 12:02:45 +02008900
Willy Tarreau74ca5042013-06-11 23:12:07 +02008901fe_sess_rate([<frontend>]) : integer
8902 Returns an integer value corresponding to the sessions creation rate on the
8903 frontend, in number of new sessions per second. This is used with ACLs to
8904 limit the incoming session rate to an acceptable range in order to prevent
8905 abuse of service at the earliest moment, for example when combined with other
8906 layer 4 ACLs in order to force the clients to wait a bit for the rate to go
8907 down below the limit. It can also be useful to add this element to logs using
8908 a log-format directive. See also the "rate-limit sessions" directive for use
8909 in frontends.
Willy Tarreau079ff0a2009-03-05 21:34:28 +01008910
8911 Example :
8912 # This frontend limits incoming mails to 10/s with a max of 100
8913 # concurrent connections. We accept any connection below 10/s, and
8914 # force excess clients to wait for 100 ms. Since clients are limited to
8915 # 100 max, there cannot be more than 10 incoming mails per second.
8916 frontend mail
8917 bind :25
8918 mode tcp
8919 maxconn 100
8920 acl too_fast fe_sess_rate ge 10
8921 tcp-request inspect-delay 100ms
8922 tcp-request content accept if ! too_fast
8923 tcp-request content accept if WAIT_END
Willy Tarreaud72758d2010-01-12 10:42:19 +01008924
Willy Tarreau74ca5042013-06-11 23:12:07 +02008925nbsrv([<backend>]) : integer
8926 Returns an integer value corresponding to the number of usable servers of
8927 either the current backend or the named backend. This is mostly used with
8928 ACLs but can also be useful when added to logs. This is normally used to
Willy Tarreaud63335a2010-02-26 12:56:52 +01008929 switch to an alternate backend when the number of servers is too low to
8930 to handle some load. It is useful to report a failure when combined with
8931 "monitor fail".
Willy Tarreau079ff0a2009-03-05 21:34:28 +01008932
Willy Tarreau74ca5042013-06-11 23:12:07 +02008933queue([<backend>]) : integer
Willy Tarreaud63335a2010-02-26 12:56:52 +01008934 Returns the total number of queued connections of the designated backend,
8935 including all the connections in server queues. If no backend name is
8936 specified, the current one is used, but it is also possible to check another
Willy Tarreau74ca5042013-06-11 23:12:07 +02008937 one. This is useful with ACLs or to pass statistics to backend servers. This
8938 can be used to take actions when queuing goes above a known level, generally
8939 indicating a surge of traffic or a massive slowdown on the servers. One
8940 possible action could be to reject new users but still accept old ones. See
8941 also the "avg_queue", "be_conn", and "be_sess_rate" fetches.
8942
8943srv_conn([<backend>/]<server>) : integer
8944 Returns an integer value corresponding to the number of currently established
8945 connections on the designated server, possibly including the connection being
8946 evaluated. If <backend> is omitted, then the server is looked up in the
8947 current backend. It can be used to use a specific farm when one server is
8948 full, or to inform the server about our view of the number of active
8949 connections with it. See also the "fe_conn", "be_conn" and "queue" fetch
8950 methods.
8951
8952srv_is_up([<backend>/]<server>) : boolean
8953 Returns true when the designated server is UP, and false when it is either
8954 DOWN or in maintenance mode. If <backend> is omitted, then the server is
8955 looked up in the current backend. It is mainly used to take action based on
8956 an external status reported via a health check (eg: a geographical site's
8957 availability). Another possible use which is more of a hack consists in
8958 using dummy servers as boolean variables that can be enabled or disabled from
8959 the CLI, so that rules depending on those ACLs can be tweaked in realtime.
8960
8961srv_sess_rate([<backend>/]<server>) : integer
8962 Returns an integer corresponding to the sessions creation rate on the
8963 designated server, in number of new sessions per second. If <backend> is
8964 omitted, then the server is looked up in the current backend. This is mosly
8965 used with ACLs but can make sense with logs too. This is used to switch to an
8966 alternate backend when an expensive or fragile one reaches too high a session
8967 rate, or to limit abuse of service (eg. prevent latent requests from
8968 overloading servers).
8969
8970 Example :
8971 # Redirect to a separate back
8972 acl srv1_full srv_sess_rate(be1/srv1) gt 50
8973 acl srv2_full srv_sess_rate(be1/srv2) gt 50
8974 use_backend be2 if srv1_full or srv2_full
8975
8976table_avl([<table>]) : integer
8977 Returns the total number of available entries in the current proxy's
8978 stick-table or in the designated stick-table. See also table_cnt.
8979
8980table_cnt([<table>]) : integer
8981 Returns the total number of entries currently in use in the current proxy's
8982 stick-table or in the designated stick-table. See also src_conn_cnt and
8983 table_avl for other entry counting methods.
8984
8985
89867.3.2. Fetching samples at Layer 4
8987----------------------------------
8988
8989The layer 4 usually describes just the transport layer which in haproxy is
8990closest to the connection, where no content is yet made available. The fetch
8991methods described here are usable as low as the "tcp-request connection" rule
8992sets unless they require some future information. Those generally include
8993TCP/IP addresses and ports, as well as elements from stick-tables related to
Willy Tarreau4d4149c2013-07-23 19:33:46 +02008994the incoming connection. For retrieving a value from a sticky counters, the
8995counter number can be explicitly set as 0, 1, or 2 using the pre-defined
8996"sc0_", "sc1_", or "sc2_" prefix, or it can be specified as the first integer
Willy Tarreau0f791d42013-07-23 19:56:43 +02008997argument when using the "sc_" prefix. An optional table may be specified with
8998the "sc*" form, in which case the currently tracked key will be looked up into
8999this alternate table instead of the table currently being tracked.
Willy Tarreau74ca5042013-06-11 23:12:07 +02009000
9001be_id : integer
9002 Returns an integer containing the current backend's id. It can be used in
9003 frontends with responses to check which backend processed the request.
9004
9005dst : ip
9006 This is the destination IPv4 address of the connection on the client side,
9007 which is the address the client connected to. It can be useful when running
9008 in transparent mode. It is of type IP and works on both IPv4 and IPv6 tables.
9009 On IPv6 tables, IPv4 address is mapped to its IPv6 equivalent, according to
9010 RFC 4291.
9011
9012dst_conn : integer
9013 Returns an integer value corresponding to the number of currently established
9014 connections on the same socket including the one being evaluated. It is
9015 normally used with ACLs but can as well be used to pass the information to
9016 servers in an HTTP header or in logs. It can be used to either return a sorry
9017 page before hard-blocking, or to use a specific backend to drain new requests
9018 when the socket is considered saturated. This offers the ability to assign
9019 different limits to different listening ports or addresses. See also the
9020 "fe_conn" and "be_conn" fetches.
Willy Tarreaud63335a2010-02-26 12:56:52 +01009021
Willy Tarreau74ca5042013-06-11 23:12:07 +02009022dst_port : integer
9023 Returns an integer value corresponding to the destination TCP port of the
9024 connection on the client side, which is the port the client connected to.
9025 This might be used when running in transparent mode, when assigning dynamic
9026 ports to some clients for a whole application session, to stick all users to
9027 a same server, or to pass the destination port information to a server using
9028 an HTTP header.
9029
9030fe_id : integer
9031 Returns an integer containing the current frontend's id. It can be used in
9032 backends to check from which backend it was called, or to stick all users
9033 coming via a same frontend to the same server.
9034
Willy Tarreau0f791d42013-07-23 19:56:43 +02009035sc_bytes_in_rate(<ctr>,[<table>]) : integer
9036sc0_bytes_in_rate([<table>]) : integer
9037sc1_bytes_in_rate([<table>]) : integer
9038sc2_bytes_in_rate([<table>]) : integer
Willy Tarreaue9656522010-08-17 15:40:09 +02009039 Returns the average client-to-server bytes rate from the currently tracked
9040 counters, measured in amount of bytes over the period configured in the
9041 table. See also src_bytes_in_rate.
9042
Willy Tarreau0f791d42013-07-23 19:56:43 +02009043sc_bytes_out_rate(<ctr>,[<table>]) : integer
9044sc0_bytes_out_rate([<table>]) : integer
9045sc1_bytes_out_rate([<table>]) : integer
9046sc2_bytes_out_rate([<table>]) : integer
Willy Tarreaue9656522010-08-17 15:40:09 +02009047 Returns the average server-to-client bytes rate from the currently tracked
9048 counters, measured in amount of bytes over the period configured in the
9049 table. See also src_bytes_out_rate.
9050
Willy Tarreau0f791d42013-07-23 19:56:43 +02009051sc_clr_gpc0(<ctr>,[<table>]) : integer
9052sc0_clr_gpc0([<table>]) : integer
9053sc1_clr_gpc0([<table>]) : integer
9054sc2_clr_gpc0([<table>]) : integer
Willy Tarreauf73cd112011-08-13 01:45:16 +02009055 Clears the first General Purpose Counter associated to the currently tracked
9056 counters, and returns its previous value. Before the first invocation, the
Willy Tarreau869948b2013-01-04 14:14:57 +01009057 stored value is zero, so first invocation will always return zero. This is
9058 typically used as a second ACL in an expression in order to mark a connection
9059 when a first ACL was verified :
Willy Tarreauf73cd112011-08-13 01:45:16 +02009060
9061 # block if 5 consecutive requests continue to come faster than 10 sess
9062 # per second, and reset the counter as soon as the traffic slows down.
Willy Tarreaube4a3ef2013-06-17 15:04:07 +02009063 acl abuse sc0_http_req_rate gt 10
9064 acl kill sc0_inc_gpc0 gt 5
9065 acl save sc0_clr_gpc0 ge 0
Willy Tarreauf73cd112011-08-13 01:45:16 +02009066 tcp-request connection accept if !abuse save
9067 tcp-request connection reject if abuse kill
9068
Willy Tarreau0f791d42013-07-23 19:56:43 +02009069sc_conn_cnt(<ctr>,[<table>]) : integer
9070sc0_conn_cnt([<table>]) : integer
9071sc1_conn_cnt([<table>]) : integer
9072sc2_conn_cnt([<table>]) : integer
Willy Tarreaue9656522010-08-17 15:40:09 +02009073 Returns the cumulated number of incoming connections from currently tracked
9074 counters. See also src_conn_cnt.
9075
Willy Tarreau0f791d42013-07-23 19:56:43 +02009076sc_conn_cur(<ctr>,[<table>]) : integer
9077sc0_conn_cur([<table>]) : integer
9078sc1_conn_cur([<table>]) : integer
9079sc2_conn_cur([<table>]) : integer
Willy Tarreaue9656522010-08-17 15:40:09 +02009080 Returns the current amount of concurrent connections tracking the same
9081 tracked counters. This number is automatically incremented when tracking
9082 begins and decremented when tracking stops. See also src_conn_cur.
9083
Willy Tarreau0f791d42013-07-23 19:56:43 +02009084sc_conn_rate(<ctr>,[<table>]) : integer
9085sc0_conn_rate([<table>]) : integer
9086sc1_conn_rate([<table>]) : integer
9087sc2_conn_rate([<table>]) : integer
Willy Tarreaue9656522010-08-17 15:40:09 +02009088 Returns the average connection rate from the currently tracked counters,
9089 measured in amount of connections over the period configured in the table.
9090 See also src_conn_rate.
9091
Willy Tarreau0f791d42013-07-23 19:56:43 +02009092sc_get_gpc0(<ctr>,[<table>]) : integer
9093sc0_get_gpc0([<table>]) : integer
9094sc1_get_gpc0([<table>]) : integer
9095sc2_get_gpc0([<table>]) : integer
Willy Tarreaue9656522010-08-17 15:40:09 +02009096 Returns the value of the first General Purpose Counter associated to the
Willy Tarreau4d4149c2013-07-23 19:33:46 +02009097 currently tracked counters. See also src_get_gpc0 and sc/sc0/sc1/sc2_inc_gpc0.
Willy Tarreauba2ffd12013-05-29 15:54:14 +02009098
Willy Tarreau0f791d42013-07-23 19:56:43 +02009099sc_gpc0_rate(<ctr>,[<table>]) : integer
9100sc0_gpc0_rate([<table>]) : integer
9101sc1_gpc0_rate([<table>]) : integer
9102sc2_gpc0_rate([<table>]) : integer
Willy Tarreauba2ffd12013-05-29 15:54:14 +02009103 Returns the average increment rate of the first General Purpose Counter
9104 associated to the currently tracked counters. It reports the frequency
9105 which the gpc0 counter was incremented over the configured period. See also
Willy Tarreau4d4149c2013-07-23 19:33:46 +02009106 src_gpc0_rate, sc/sc0/sc1/sc2_get_gpc0, and sc/sc0/sc1/sc2_inc_gpc0. Note
9107 that the "gpc0_rate" counter must be stored in the stick-table for a value to
9108 be returned, as "gpc0" only holds the event count.
Willy Tarreaue9656522010-08-17 15:40:09 +02009109
Willy Tarreau0f791d42013-07-23 19:56:43 +02009110sc_http_err_cnt(<ctr>,[<table>]) : integer
9111sc0_http_err_cnt([<table>]) : integer
9112sc1_http_err_cnt([<table>]) : integer
9113sc2_http_err_cnt([<table>]) : integer
Willy Tarreaue9656522010-08-17 15:40:09 +02009114 Returns the cumulated number of HTTP errors from the currently tracked
9115 counters. This includes the both request errors and 4xx error responses.
9116 See also src_http_err_cnt.
9117
Willy Tarreau0f791d42013-07-23 19:56:43 +02009118sc_http_err_rate(<ctr>,[<table>]) : integer
9119sc0_http_err_rate([<table>]) : integer
9120sc1_http_err_rate([<table>]) : integer
9121sc2_http_err_rate([<table>]) : integer
Willy Tarreaue9656522010-08-17 15:40:09 +02009122 Returns the average rate of HTTP errors from the currently tracked counters,
9123 measured in amount of errors over the period configured in the table. This
9124 includes the both request errors and 4xx error responses. See also
9125 src_http_err_rate.
9126
Willy Tarreau0f791d42013-07-23 19:56:43 +02009127sc_http_req_cnt(<ctr>,[<table>]) : integer
9128sc0_http_req_cnt([<table>]) : integer
9129sc1_http_req_cnt([<table>]) : integer
9130sc2_http_req_cnt([<table>]) : integer
Willy Tarreaue9656522010-08-17 15:40:09 +02009131 Returns the cumulated number of HTTP requests from the currently tracked
9132 counters. This includes every started request, valid or not. See also
9133 src_http_req_cnt.
9134
Willy Tarreau0f791d42013-07-23 19:56:43 +02009135sc_http_req_rate(<ctr>,[<table>]) : integer
9136sc0_http_req_rate([<table>]) : integer
9137sc1_http_req_rate([<table>]) : integer
9138sc2_http_req_rate([<table>]) : integer
Willy Tarreaue9656522010-08-17 15:40:09 +02009139 Returns the average rate of HTTP requests from the currently tracked
9140 counters, measured in amount of requests over the period configured in
9141 the table. This includes every started request, valid or not. See also
9142 src_http_req_rate.
9143
Willy Tarreau0f791d42013-07-23 19:56:43 +02009144sc_inc_gpc0(<ctr>,[<table>]) : integer
9145sc0_inc_gpc0([<table>]) : integer
9146sc1_inc_gpc0([<table>]) : integer
9147sc2_inc_gpc0([<table>]) : integer
Willy Tarreaue9656522010-08-17 15:40:09 +02009148 Increments the first General Purpose Counter associated to the currently
Willy Tarreau869948b2013-01-04 14:14:57 +01009149 tracked counters, and returns its new value. Before the first invocation,
9150 the stored value is zero, so first invocation will increase it to 1 and will
9151 return 1. This is typically used as a second ACL in an expression in order
9152 to mark a connection when a first ACL was verified :
Willy Tarreaue9656522010-08-17 15:40:09 +02009153
Willy Tarreaube4a3ef2013-06-17 15:04:07 +02009154 acl abuse sc0_http_req_rate gt 10
9155 acl kill sc0_inc_gpc0 gt 0
Willy Tarreaue9656522010-08-17 15:40:09 +02009156 tcp-request connection reject if abuse kill
9157
Willy Tarreau0f791d42013-07-23 19:56:43 +02009158sc_kbytes_in(<ctr>,[<table>]) : integer
9159sc0_kbytes_in([<table>]) : integer
9160sc1_kbytes_in([<table>]) : integer
9161sc2_kbytes_in([<table>]) : integer
Willy Tarreaue9656522010-08-17 15:40:09 +02009162 Returns the amount of client-to-server data from the currently tracked
9163 counters, measured in kilobytes over the period configured in the table. The
9164 test is currently performed on 32-bit integers, which limits values to 4
9165 terabytes. See also src_kbytes_in.
9166
Willy Tarreau0f791d42013-07-23 19:56:43 +02009167sc_kbytes_out(<ctr>,[<table>]) : integer
9168sc0_kbytes_out([<table>]) : integer
9169sc1_kbytes_out([<table>]) : integer
9170sc2_kbytes_out([<table>]) : integer
Willy Tarreaue9656522010-08-17 15:40:09 +02009171 Returns the amount of server-to-client data from the currently tracked
9172 counters, measured in kilobytes over the period configured in the table. The
9173 test is currently performed on 32-bit integers, which limits values to 4
9174 terabytes. See also src_kbytes_out.
9175
Willy Tarreau0f791d42013-07-23 19:56:43 +02009176sc_sess_cnt(<ctr>,[<table>]) : integer
9177sc0_sess_cnt([<table>]) : integer
9178sc1_sess_cnt([<table>]) : integer
9179sc2_sess_cnt([<table>]) : integer
Willy Tarreaue9656522010-08-17 15:40:09 +02009180 Returns the cumulated number of incoming connections that were transformed
9181 into sessions, which means that they were accepted by a "tcp-request
9182 connection" rule, from the currently tracked counters. A backend may count
9183 more sessions than connections because each connection could result in many
Jamie Gloudonaaa21002012-08-25 00:18:33 -04009184 backend sessions if some HTTP keep-alive is performed over the connection
Willy Tarreaue9656522010-08-17 15:40:09 +02009185 with the client. See also src_sess_cnt.
9186
Willy Tarreau0f791d42013-07-23 19:56:43 +02009187sc_sess_rate(<ctr>,[<table>]) : integer
9188sc0_sess_rate([<table>]) : integer
9189sc1_sess_rate([<table>]) : integer
9190sc2_sess_rate([<table>]) : integer
Willy Tarreaue9656522010-08-17 15:40:09 +02009191 Returns the average session rate from the currently tracked counters,
9192 measured in amount of sessions over the period configured in the table. A
9193 session is a connection that got past the early "tcp-request connection"
9194 rules. A backend may count more sessions than connections because each
9195 connection could result in many backend sessions if some HTTP keep-alive is
Jamie Gloudonaaa21002012-08-25 00:18:33 -04009196 performed over the connection with the client. See also src_sess_rate.
Willy Tarreaue9656522010-08-17 15:40:09 +02009197
Willy Tarreau0f791d42013-07-23 19:56:43 +02009198sc_tracked(<ctr>,[<table>]) : boolean
9199sc0_tracked([<table>]) : boolean
9200sc1_tracked([<table>]) : boolean
9201sc2_tracked([<table>]) : boolean
Willy Tarreau6f1615f2013-06-03 15:15:22 +02009202 Returns true if the designated session counter is currently being tracked by
9203 the current session. This can be useful when deciding whether or not we want
9204 to set some values in a header passed to the server.
9205
Willy Tarreau0f791d42013-07-23 19:56:43 +02009206sc_trackers(<ctr>,[<table>]) : integer
9207sc0_trackers([<table>]) : integer
9208sc1_trackers([<table>]) : integer
9209sc2_trackers([<table>]) : integer
Willy Tarreau2406db42012-12-09 12:16:43 +01009210 Returns the current amount of concurrent connections tracking the same
9211 tracked counters. This number is automatically incremented when tracking
Willy Tarreaube4a3ef2013-06-17 15:04:07 +02009212 begins and decremented when tracking stops. It differs from sc0_conn_cur in
Willy Tarreau2406db42012-12-09 12:16:43 +01009213 that it does not rely on any stored information but on the table's reference
9214 count (the "use" value which is returned by "show table" on the CLI). This
Willy Tarreau74ca5042013-06-11 23:12:07 +02009215 may sometimes be more suited for layer7 tracking. It can be used to tell a
9216 server how many concurrent connections there are from a given address for
9217 example.
Willy Tarreau2406db42012-12-09 12:16:43 +01009218
Willy Tarreau74ca5042013-06-11 23:12:07 +02009219so_id : integer
9220 Returns an integer containing the current listening socket's id. It is useful
9221 in frontends involving many "bind" lines, or to stick all users coming via a
9222 same socket to the same server.
Willy Tarreaud63335a2010-02-26 12:56:52 +01009223
Willy Tarreau74ca5042013-06-11 23:12:07 +02009224src : ip
9225 This is the source IPv4 address of the client of the session. It is of type
9226 IP and works on both IPv4 and IPv6 tables. On IPv6 tables, IPv4 addresses are
9227 mapped to their IPv6 equivalent, according to RFC 4291. Note that it is the
9228 TCP-level source address which is used, and not the address of a client
9229 behind a proxy. However if the "accept-proxy" bind directive is used, it can
9230 be the address of a client behind another PROXY-protocol compatible component
9231 for all rule sets except "tcp-request connection" which sees the real address.
Willy Tarreaud63335a2010-02-26 12:56:52 +01009232
Willy Tarreau74ca5042013-06-11 23:12:07 +02009233src_bytes_in_rate([<table>]) : integer
9234 Returns the average bytes rate from the incoming connection's source address
9235 in the current proxy's stick-table or in the designated stick-table, measured
9236 in amount of bytes over the period configured in the table. If the address is
Willy Tarreau4d4149c2013-07-23 19:33:46 +02009237 not found, zero is returned. See also sc/sc0/sc1/sc2_bytes_in_rate.
Willy Tarreauc9705a12010-07-27 20:05:50 +02009238
Willy Tarreau74ca5042013-06-11 23:12:07 +02009239src_bytes_out_rate([<table>]) : integer
9240 Returns the average bytes rate to the incoming connection's source address in
9241 the current proxy's stick-table or in the designated stick-table, measured in
Willy Tarreauc9705a12010-07-27 20:05:50 +02009242 amount of bytes over the period configured in the table. If the address is
Willy Tarreau4d4149c2013-07-23 19:33:46 +02009243 not found, zero is returned. See also sc/sc0/sc1/sc2_bytes_out_rate.
Willy Tarreauc9705a12010-07-27 20:05:50 +02009244
Willy Tarreau74ca5042013-06-11 23:12:07 +02009245src_clr_gpc0([<table>]) : integer
9246 Clears the first General Purpose Counter associated to the incoming
9247 connection's source address in the current proxy's stick-table or in the
9248 designated stick-table, and returns its previous value. If the address is not
9249 found, an entry is created and 0 is returned. This is typically used as a
9250 second ACL in an expression in order to mark a connection when a first ACL
9251 was verified :
Willy Tarreauf73cd112011-08-13 01:45:16 +02009252
9253 # block if 5 consecutive requests continue to come faster than 10 sess
9254 # per second, and reset the counter as soon as the traffic slows down.
9255 acl abuse src_http_req_rate gt 10
9256 acl kill src_inc_gpc0 gt 5
Willy Tarreau869948b2013-01-04 14:14:57 +01009257 acl save src_clr_gpc0 ge 0
Willy Tarreauf73cd112011-08-13 01:45:16 +02009258 tcp-request connection accept if !abuse save
9259 tcp-request connection reject if abuse kill
9260
Willy Tarreau74ca5042013-06-11 23:12:07 +02009261src_conn_cnt([<table>]) : integer
Willy Tarreauc9705a12010-07-27 20:05:50 +02009262 Returns the cumulated number of connections initiated from the current
Willy Tarreau74ca5042013-06-11 23:12:07 +02009263 incoming connection's source address in the current proxy's stick-table or in
Willy Tarreauc9705a12010-07-27 20:05:50 +02009264 the designated stick-table. If the address is not found, zero is returned.
Willy Tarreau4d4149c2013-07-23 19:33:46 +02009265 See also sc/sc0/sc1/sc2_conn_cnt.
Willy Tarreauc9705a12010-07-27 20:05:50 +02009266
Willy Tarreau74ca5042013-06-11 23:12:07 +02009267src_conn_cur([<table>]) : integer
Willy Tarreauc9705a12010-07-27 20:05:50 +02009268 Returns the current amount of concurrent connections initiated from the
Willy Tarreau74ca5042013-06-11 23:12:07 +02009269 current incoming connection's source address in the current proxy's
9270 stick-table or in the designated stick-table. If the address is not found,
Willy Tarreau4d4149c2013-07-23 19:33:46 +02009271 zero is returned. See also sc/sc0/sc1/sc2_conn_cur.
Willy Tarreauc9705a12010-07-27 20:05:50 +02009272
Willy Tarreau74ca5042013-06-11 23:12:07 +02009273src_conn_rate([<table>]) : integer
9274 Returns the average connection rate from the incoming connection's source
9275 address in the current proxy's stick-table or in the designated stick-table,
9276 measured in amount of connections over the period configured in the table. If
Willy Tarreau4d4149c2013-07-23 19:33:46 +02009277 the address is not found, zero is returned. See also sc/sc0/sc1/sc2_conn_rate.
Willy Tarreauc9705a12010-07-27 20:05:50 +02009278
Willy Tarreau74ca5042013-06-11 23:12:07 +02009279src_get_gpc0([<table>]) : integer
Willy Tarreauc9705a12010-07-27 20:05:50 +02009280 Returns the value of the first General Purpose Counter associated to the
Willy Tarreau74ca5042013-06-11 23:12:07 +02009281 incoming connection's source address in the current proxy's stick-table or in
Willy Tarreauc9705a12010-07-27 20:05:50 +02009282 the designated stick-table. If the address is not found, zero is returned.
Willy Tarreau4d4149c2013-07-23 19:33:46 +02009283 See also sc/sc0/sc1/sc2_get_gpc0 and src_inc_gpc0.
Willy Tarreauc9705a12010-07-27 20:05:50 +02009284
Willy Tarreau74ca5042013-06-11 23:12:07 +02009285src_gpc0_rate([<table>]) : integer
Willy Tarreauba2ffd12013-05-29 15:54:14 +02009286 Returns the average increment rate of the first General Purpose Counter
Willy Tarreau74ca5042013-06-11 23:12:07 +02009287 associated to the incoming connection's source address in the current proxy's
Willy Tarreauba2ffd12013-05-29 15:54:14 +02009288 stick-table or in the designated stick-table. It reports the frequency
9289 which the gpc0 counter was incremented over the configured period. See also
Willy Tarreau4d4149c2013-07-23 19:33:46 +02009290 sc/sc0/sc1/sc2_gpc0_rate, src_get_gpc0, and sc/sc0/sc1/sc2_inc_gpc0. Note
9291 that the "gpc0_rate" counter must be stored in the stick-table for a value to
9292 be returned, as "gpc0" only holds the event count.
Willy Tarreauba2ffd12013-05-29 15:54:14 +02009293
Willy Tarreau74ca5042013-06-11 23:12:07 +02009294src_http_err_cnt([<table>]) : integer
9295 Returns the cumulated number of HTTP errors from the incoming connection's
9296 source address in the current proxy's stick-table or in the designated
Willy Tarreauc9705a12010-07-27 20:05:50 +02009297 stick-table. This includes the both request errors and 4xx error responses.
Willy Tarreau4d4149c2013-07-23 19:33:46 +02009298 See also sc/sc0/sc1/sc2_http_err_cnt. If the address is not found, zero is
Willy Tarreau74ca5042013-06-11 23:12:07 +02009299 returned.
Willy Tarreauc9705a12010-07-27 20:05:50 +02009300
Willy Tarreau74ca5042013-06-11 23:12:07 +02009301src_http_err_rate([<table>]) : integer
9302 Returns the average rate of HTTP errors from the incoming connection's source
9303 address in the current proxy's stick-table or in the designated stick-table,
9304 measured in amount of errors over the period configured in the table. This
9305 includes the both request errors and 4xx error responses. If the address is
Willy Tarreau4d4149c2013-07-23 19:33:46 +02009306 not found, zero is returned. See also sc/sc0/sc1/sc2_http_err_rate.
Willy Tarreauc9705a12010-07-27 20:05:50 +02009307
Willy Tarreau74ca5042013-06-11 23:12:07 +02009308src_http_req_cnt([<table>]) : integer
9309 Returns the cumulated number of HTTP requests from the incoming connection's
9310 source address in the current proxy's stick-table or in the designated stick-
9311 table. This includes every started request, valid or not. If the address is
Willy Tarreau4d4149c2013-07-23 19:33:46 +02009312 not found, zero is returned. See also sc/sc0/sc1/sc2_http_req_cnt.
Willy Tarreauc9705a12010-07-27 20:05:50 +02009313
Willy Tarreau74ca5042013-06-11 23:12:07 +02009314src_http_req_rate([<table>]) : integer
9315 Returns the average rate of HTTP requests from the incoming connection's
9316 source address in the current proxy's stick-table or in the designated stick-
9317 table, measured in amount of requests over the period configured in the
Willy Tarreauc9705a12010-07-27 20:05:50 +02009318 table. This includes every started request, valid or not. If the address is
Willy Tarreau4d4149c2013-07-23 19:33:46 +02009319 not found, zero is returned. See also sc/sc0/sc1/sc2_http_req_rate.
Willy Tarreauc9705a12010-07-27 20:05:50 +02009320
Willy Tarreau74ca5042013-06-11 23:12:07 +02009321src_inc_gpc0([<table>]) : integer
9322 Increments the first General Purpose Counter associated to the incoming
9323 connection's source address in the current proxy's stick-table or in the
9324 designated stick-table, and returns its new value. If the address is not
Willy Tarreaube4a3ef2013-06-17 15:04:07 +02009325 found, an entry is created and 1 is returned. See also sc0/sc2/sc2_inc_gpc0.
Willy Tarreau74ca5042013-06-11 23:12:07 +02009326 This is typically used as a second ACL in an expression in order to mark a
9327 connection when a first ACL was verified :
Willy Tarreauc9705a12010-07-27 20:05:50 +02009328
9329 acl abuse src_http_req_rate gt 10
Willy Tarreau869948b2013-01-04 14:14:57 +01009330 acl kill src_inc_gpc0 gt 0
Willy Tarreaue9656522010-08-17 15:40:09 +02009331 tcp-request connection reject if abuse kill
Willy Tarreauc9705a12010-07-27 20:05:50 +02009332
Willy Tarreau74ca5042013-06-11 23:12:07 +02009333src_kbytes_in([<table>]) : integer
9334 Returns the amount of data received from the incoming connection's source
9335 address in the current proxy's stick-table or in the designated stick-table,
9336 measured in kilobytes over the period configured in the table. If the address
9337 is not found, zero is returned. The test is currently performed on 32-bit
Willy Tarreau4d4149c2013-07-23 19:33:46 +02009338 integers, which limits values to 4 terabytes. See also
9339 sc/sc0/sc1/sc2_kbytes_in.
Willy Tarreauc9705a12010-07-27 20:05:50 +02009340
Willy Tarreau74ca5042013-06-11 23:12:07 +02009341src_kbytes_out([<table>]) : integer
9342 Returns the amount of data sent to the incoming connection's source address
9343 in the current proxy's stick-table or in the designated stick-table, measured
Willy Tarreauc9705a12010-07-27 20:05:50 +02009344 in kilobytes over the period configured in the table. If the address is not
9345 found, zero is returned. The test is currently performed on 32-bit integers,
Willy Tarreau4d4149c2013-07-23 19:33:46 +02009346 which limits values to 4 terabytes. See also sc/sc0/sc1/sc2_kbytes_out.
Willy Tarreaua975b8f2010-06-05 19:13:27 +02009347
Willy Tarreau74ca5042013-06-11 23:12:07 +02009348src_port : integer
9349 Returns an integer value corresponding to the TCP source port of the
9350 connection on the client side, which is the port the client connected from.
9351 Usage of this function is very limited as modern protocols do not care much
9352 about source ports nowadays.
Willy Tarreau079ff0a2009-03-05 21:34:28 +01009353
Willy Tarreau74ca5042013-06-11 23:12:07 +02009354src_sess_cnt([<table>]) : integer
9355 Returns the cumulated number of connections initiated from the incoming
Willy Tarreauc9705a12010-07-27 20:05:50 +02009356 connection's source IPv4 address in the current proxy's stick-table or in the
9357 designated stick-table, that were transformed into sessions, which means that
9358 they were accepted by "tcp-request" rules. If the address is not found, zero
Willy Tarreau4d4149c2013-07-23 19:33:46 +02009359 is returned. See also sc/sc0/sc1/sc2_sess_cnt.
Willy Tarreauc9705a12010-07-27 20:05:50 +02009360
Willy Tarreau74ca5042013-06-11 23:12:07 +02009361src_sess_rate([<table>]) : integer
9362 Returns the average session rate from the incoming connection's source
9363 address in the current proxy's stick-table or in the designated stick-table,
9364 measured in amount of sessions over the period configured in the table. A
9365 session is a connection that went past the early "tcp-request" rules. If the
Willy Tarreau4d4149c2013-07-23 19:33:46 +02009366 address is not found, zero is returned. See also sc/sc0/sc1/sc2_sess_rate.
Willy Tarreauc9705a12010-07-27 20:05:50 +02009367
Willy Tarreau74ca5042013-06-11 23:12:07 +02009368src_updt_conn_cnt([<table>]) : integer
9369 Creates or updates the entry associated to the incoming connection's source
9370 address in the current proxy's stick-table or in the designated stick-table.
9371 This table must be configured to store the "conn_cnt" data type, otherwise
9372 the match will be ignored. The current count is incremented by one, and the
9373 expiration timer refreshed. The updated count is returned, so this match
9374 can't return zero. This was used to reject service abusers based on their
9375 source address. Note: it is recommended to use the more complete "track-sc*"
9376 actions in "tcp-request" rules instead.
Willy Tarreaua975b8f2010-06-05 19:13:27 +02009377
9378 Example :
9379 # This frontend limits incoming SSH connections to 3 per 10 second for
9380 # each source address, and rejects excess connections until a 10 second
9381 # silence is observed. At most 20 addresses are tracked.
9382 listen ssh
9383 bind :22
9384 mode tcp
9385 maxconn 100
Willy Tarreauc9705a12010-07-27 20:05:50 +02009386 stick-table type ip size 20 expire 10s store conn_cnt
Willy Tarreau74ca5042013-06-11 23:12:07 +02009387 tcp-request content reject if { src_updt_conn_cnt gt 3 }
Willy Tarreaua975b8f2010-06-05 19:13:27 +02009388 server local 127.0.0.1:22
9389
Willy Tarreau74ca5042013-06-11 23:12:07 +02009390srv_id : integer
9391 Returns an integer containing the server's id when processing the response.
9392 While it's almost only used with ACLs, it may be used for logging or
9393 debugging.
Hervé COMMOWICKdaa824e2011-08-05 12:09:44 +02009394
Hervé COMMOWICK35ed8012010-12-15 14:04:51 +01009395
Willy Tarreau74ca5042013-06-11 23:12:07 +020093967.3.3. Fetching samples at Layer 5
9397----------------------------------
Willy Tarreau0b1cd942010-05-16 22:18:27 +02009398
Willy Tarreau74ca5042013-06-11 23:12:07 +02009399The layer 5 usually describes just the session layer which in haproxy is
9400closest to the session once all the connection handshakes are finished, but
9401when no content is yet made available. The fetch methods described here are
9402usable as low as the "tcp-request content" rule sets unless they require some
9403future information. Those generally include the results of SSL negociations.
Willy Tarreauc735a072011-03-29 00:57:02 +02009404
Willy Tarreau74ca5042013-06-11 23:12:07 +02009405ssl_c_ca_err : integer
9406 When the incoming connection was made over an SSL/TLS transport layer,
9407 returns the ID of the first error detected during verification of the client
9408 certificate at depth > 0, or 0 if no error was encountered during this
9409 verification process. Please refer to your SSL library's documentation to
9410 find the exhaustive list of error codes.
Willy Tarreauc735a072011-03-29 00:57:02 +02009411
Willy Tarreau74ca5042013-06-11 23:12:07 +02009412ssl_c_ca_err_depth : integer
9413 When the incoming connection was made over an SSL/TLS transport layer,
9414 returns the depth in the CA chain of the first error detected during the
9415 verification of the client certificate. If no error is encountered, 0 is
9416 returned.
Willy Tarreau0ba27502007-12-24 16:55:16 +01009417
Willy Tarreau74ca5042013-06-11 23:12:07 +02009418ssl_c_err : integer
9419 When the incoming connection was made over an SSL/TLS transport layer,
9420 returns the ID of the first error detected during verification at depth 0, or
9421 0 if no error was encountered during this verification process. Please refer
9422 to your SSL library's documentation to find the exhaustive list of error
9423 codes.
Willy Tarreau62644772008-07-16 18:36:06 +02009424
Willy Tarreau74ca5042013-06-11 23:12:07 +02009425ssl_c_i_dn([<entry>[,<occ>]]) : string
9426 When the incoming connection was made over an SSL/TLS transport layer,
9427 returns the full distinguished name of the issuer of the certificate
9428 presented by the client when no <entry> is specified, or the value of the
9429 first given entry found from the beginning of the DN. If a positive/negative
9430 occurrence number is specified as the optional second argument, it returns
9431 the value of the nth given entry value from the beginning/end of the DN.
9432 For instance, "ssl_c_i_dn(OU,2)" the second organization unit, and
9433 "ssl_c_i_dn(CN)" retrieves the common name.
Willy Tarreau62644772008-07-16 18:36:06 +02009434
Willy Tarreau74ca5042013-06-11 23:12:07 +02009435 ACL derivatives :
9436 ssl_c_i_dn([<entry>[,<occ>]]) : exact string match
Willy Tarreaub6672b52011-12-12 17:23:41 +01009437
Willy Tarreau74ca5042013-06-11 23:12:07 +02009438ssl_c_key_alg : string
9439 Returns the name of the algorithm used to generate the key of the certificate
9440 presented by the client when the incoming connection was made over an SSL/TLS
9441 transport layer.
Willy Tarreau62644772008-07-16 18:36:06 +02009442
Willy Tarreau74ca5042013-06-11 23:12:07 +02009443 ACL derivatives :
9444 ssl_c_key_alg : exact string match
Willy Tarreau2492d5b2009-07-11 00:06:00 +02009445
Willy Tarreau74ca5042013-06-11 23:12:07 +02009446ssl_c_notafter : string
9447 Returns the end date presented by the client as a formatted string
9448 YYMMDDhhmmss[Z] when the incoming connection was made over an SSL/TLS
9449 transport layer.
Emeric Brunbede3d02009-06-30 17:54:00 +02009450
Willy Tarreau74ca5042013-06-11 23:12:07 +02009451 ACL derivatives :
9452 ssl_c_notafter : exact string match
Emeric Brunbede3d02009-06-30 17:54:00 +02009453
Willy Tarreau74ca5042013-06-11 23:12:07 +02009454ssl_c_notbefore : string
9455 Returns the start date presented by the client as a formatted string
9456 YYMMDDhhmmss[Z] when the incoming connection was made over an SSL/TLS
9457 transport layer.
Willy Tarreaub6672b52011-12-12 17:23:41 +01009458
Willy Tarreau74ca5042013-06-11 23:12:07 +02009459 ACL derivatives :
9460 ssl_c_notbefore : exact string match
Willy Tarreaub6672b52011-12-12 17:23:41 +01009461
Willy Tarreau74ca5042013-06-11 23:12:07 +02009462ssl_c_s_dn([<entry>[,<occ>]]) : string
9463 When the incoming connection was made over an SSL/TLS transport layer,
9464 returns the full distinguished name of the subject of the certificate
9465 presented by the client when no <entry> is specified, or the value of the
9466 first given entry found from the beginning of the DN. If a positive/negative
9467 occurrence number is specified as the optional second argument, it returns
9468 the value of the nth given entry value from the beginning/end of the DN.
9469 For instance, "ssl_c_s_dn(OU,2)" the second organization unit, and
9470 "ssl_c_s_dn(CN)" retrieves the common name.
Willy Tarreaub6672b52011-12-12 17:23:41 +01009471
Willy Tarreau74ca5042013-06-11 23:12:07 +02009472 ACL derivatives :
9473 ssl_c_s_dn([<entry>[,<occ>]]) : exact string match
Willy Tarreau7875d092012-09-10 08:20:03 +02009474
Willy Tarreau74ca5042013-06-11 23:12:07 +02009475ssl_c_serial : binary
9476 Returns the serial of the certificate presented by the client when the
9477 incoming connection was made over an SSL/TLS transport layer. When used for
9478 an ACL, the value(s) to match against can be passed in hexadecimal form.
Emeric Brun2525b6b2012-10-18 15:59:43 +02009479
Willy Tarreau74ca5042013-06-11 23:12:07 +02009480 ACL derivatives :
9481 ssl_c_serial : hex block match
Emeric Brun2525b6b2012-10-18 15:59:43 +02009482
Willy Tarreau74ca5042013-06-11 23:12:07 +02009483ssl_c_sha1 : binary
9484 Returns the SHA-1 fingerprint of the certificate presented by the client when
9485 the incoming connection was made over an SSL/TLS transport layer. This can be
9486 used to stick a client to a server, or to pass this information to a server.
Emeric Brun2525b6b2012-10-18 15:59:43 +02009487
Willy Tarreau74ca5042013-06-11 23:12:07 +02009488ssl_c_sig_alg : string
9489 Returns the name of the algorithm used to sign the certificate presented by
9490 the client when the incoming connection was made over an SSL/TLS transport
9491 layer.
Emeric Brun87855892012-10-17 17:39:35 +02009492
Willy Tarreau74ca5042013-06-11 23:12:07 +02009493 ACL derivatives :
9494 ssl_c_sig_alg : exact string match
9495
9496ssl_c_used : boolean
9497 Returns true if current SSL session uses a client certificate even if current
9498 connection uses SSL session resumption. See also "ssl_fc_has_crt".
Emeric Brun7f56e742012-10-19 18:15:40 +02009499
Willy Tarreau74ca5042013-06-11 23:12:07 +02009500ssl_c_verify : integer
9501 Returns the verify result error ID when the incoming connection was made over
9502 an SSL/TLS transport layer, otherwise zero if no error is encountered. Please
9503 refer to your SSL library's documentation for an exhaustive list of error
9504 codes.
Emeric Brunce5ad802012-10-22 14:11:22 +02009505
Willy Tarreau74ca5042013-06-11 23:12:07 +02009506ssl_c_version : integer
9507 Returns the version of the certificate presented by the client when the
9508 incoming connection was made over an SSL/TLS transport layer.
Emeric Brunce5ad802012-10-22 14:11:22 +02009509
Willy Tarreau74ca5042013-06-11 23:12:07 +02009510ssl_f_i_dn([<entry>[,<occ>]]) : string
9511 When the incoming connection was made over an SSL/TLS transport layer,
9512 returns the full distinguished name of the issuer of the certificate
9513 presented by the frontend when no <entry> is specified, or the value of the
9514 first given entry found from the beginning of the DN. If a positive/negative
Emeric Brun87855892012-10-17 17:39:35 +02009515 occurrence number is specified as the optional second argument, it returns
Willy Tarreau74ca5042013-06-11 23:12:07 +02009516 the value of the nth given entry value from the beginning/end of the DN.
9517 For instance, "ssl_f_i_dn(OU,2)" the second organization unit, and
9518 "ssl_f_i_dn(CN)" retrieves the common name.
Emeric Brun87855892012-10-17 17:39:35 +02009519
Willy Tarreau74ca5042013-06-11 23:12:07 +02009520 ACL derivatives :
9521 ssl_f_i_dn([<entry>[,<occ>]]) : exact string match
Willy Tarreau8d598402012-10-22 17:58:39 +02009522
Willy Tarreau74ca5042013-06-11 23:12:07 +02009523ssl_f_key_alg : string
9524 Returns the name of the algorithm used to generate the key of the certificate
9525 presented by the frontend when the incoming connection was made over an
9526 SSL/TLS transport layer.
Emeric Brun7f56e742012-10-19 18:15:40 +02009527
Willy Tarreau74ca5042013-06-11 23:12:07 +02009528 ACL derivatives :
9529 ssl_f_key_alg : exact string match
Emeric Brun9143d372012-12-20 15:44:16 +01009530
Willy Tarreau74ca5042013-06-11 23:12:07 +02009531ssl_f_notafter : string
9532 Returns the end date presented by the frontend as a formatted string
9533 YYMMDDhhmmss[Z] when the incoming connection was made over an SSL/TLS
9534 transport layer.
Emeric Brun2525b6b2012-10-18 15:59:43 +02009535
Willy Tarreau74ca5042013-06-11 23:12:07 +02009536 ACL derivatives :
9537 ssl_f_notafter : exact string match
Emeric Bruna7359fd2012-10-17 15:03:11 +02009538
Willy Tarreau74ca5042013-06-11 23:12:07 +02009539ssl_f_notbefore : string
9540 Returns the start date presented by the frontend as a formatted string
9541 YYMMDDhhmmss[Z] when the incoming connection was made over an SSL/TLS
9542 transport layer.
Emeric Brun87855892012-10-17 17:39:35 +02009543
Willy Tarreau74ca5042013-06-11 23:12:07 +02009544 ACL derivatives :
9545 ssl_f_notbefore : exact string match
Emeric Brun7f56e742012-10-19 18:15:40 +02009546
Willy Tarreau74ca5042013-06-11 23:12:07 +02009547ssl_f_s_dn([<entry>[,<occ>]]) : string
9548 When the incoming connection was made over an SSL/TLS transport layer,
9549 returns the full distinguished name of the subject of the certificate
9550 presented by the frontend when no <entry> is specified, or the value of the
9551 first given entry found from the beginning of the DN. If a positive/negative
9552 occurrence number is specified as the optional second argument, it returns
9553 the value of the nth given entry value from the beginning/end of the DN.
9554 For instance, "ssl_f_s_dn(OU,2)" the second organization unit, and
9555 "ssl_f_s_dn(CN)" retrieves the common name.
Emeric Brunce5ad802012-10-22 14:11:22 +02009556
Willy Tarreau74ca5042013-06-11 23:12:07 +02009557 ACL derivatives :
9558 ssl_f_s_dn([<entry>[,<occ>]]) : exact string match
Emeric Brunce5ad802012-10-22 14:11:22 +02009559
Willy Tarreau74ca5042013-06-11 23:12:07 +02009560ssl_f_serial : binary
9561 Returns the serial of the certificate presented by the frontend when the
9562 incoming connection was made over an SSL/TLS transport layer. When used for
9563 an ACL, the value(s) to match against can be passed in hexadecimal form.
Emeric Brun87855892012-10-17 17:39:35 +02009564
Willy Tarreau74ca5042013-06-11 23:12:07 +02009565 ACL derivatives :
9566 ssl_f_serial : hex block match
Willy Tarreau8d598402012-10-22 17:58:39 +02009567
Willy Tarreau74ca5042013-06-11 23:12:07 +02009568ssl_f_sig_alg : string
9569 Returns the name of the algorithm used to sign the certificate presented by
9570 the frontend when the incoming connection was made over an SSL/TLS transport
9571 layer.
Emeric Brun7f56e742012-10-19 18:15:40 +02009572
Willy Tarreau74ca5042013-06-11 23:12:07 +02009573 ACL derivatives :
9574 ssl_f_sig_alg : exact string match
Emeric Bruna7359fd2012-10-17 15:03:11 +02009575
Willy Tarreau74ca5042013-06-11 23:12:07 +02009576ssl_f_version : integer
9577 Returns the version of the certificate presented by the frontend when the
9578 incoming connection was made over an SSL/TLS transport layer.
9579
9580ssl_fc : boolean
Emeric Brun2525b6b2012-10-18 15:59:43 +02009581 Returns true when the front connection was made via an SSL/TLS transport
9582 layer and is locally deciphered. This means it has matched a socket declared
9583 with a "bind" line having the "ssl" option.
9584
Willy Tarreau74ca5042013-06-11 23:12:07 +02009585 Example :
9586 # This passes "X-Proto: https" to servers when client connects over SSL
9587 listen http-https
9588 bind :80
9589 bind :443 ssl crt /etc/haproxy.pem
9590 http-request add-header X-Proto https if { ssl_fc }
9591
9592ssl_fc_alg_keysize : integer
9593 Returns the symmetric cipher key size supported in bits when the incoming
9594 connection was made over an SSL/TLS transport layer.
9595
9596ssl_fc_alpn : string
9597 This extracts the Application Layer Protocol Negociation field from an
9598 incoming connection made via a TLS transport layer and locally deciphered by
9599 haproxy. The result is a string containing the protocol name advertised by
9600 the client. The SSL library must have been built with support for TLS
9601 extensions enabled (check haproxy -vv). Note that the TLS ALPN extension is
9602 not advertised unless the "alpn" keyword on the "bind" line specifies a
9603 protocol list. Also, nothing forces the client to pick a protocol from this
9604 list, any other one may be requested. The TLS ALPN extension is meant to
9605 replace the TLS NPN extension. See also "ssl_fc_npn".
9606
9607 ACL derivatives :
9608 ssl_fc_alpn : exact string match
Emeric Brun589fcad2012-10-16 14:13:26 +02009609
Willy Tarreau74ca5042013-06-11 23:12:07 +02009610ssl_fc_cipher : string
9611 Returns the name of the used cipher when the incoming connection was made
9612 over an SSL/TLS transport layer.
Willy Tarreauab861d32013-04-02 02:30:41 +02009613
Willy Tarreau74ca5042013-06-11 23:12:07 +02009614 ACL derivatives :
9615 ssl_fc_cipher : exact string match
Emeric Brun589fcad2012-10-16 14:13:26 +02009616
Willy Tarreau74ca5042013-06-11 23:12:07 +02009617ssl_fc_has_crt : boolean
Emeric Brun2525b6b2012-10-18 15:59:43 +02009618 Returns true if a client certificate is present in an incoming connection over
9619 SSL/TLS transport layer. Useful if 'verify' statement is set to 'optional'.
Emeric Brun9143d372012-12-20 15:44:16 +01009620 Note: on SSL session resumption with Session ID or TLS ticket, client
9621 certificate is not present in the current connection but may be retrieved
9622 from the cache or the ticket. So prefer "ssl_c_used" if you want to check if
9623 current SSL session uses a client certificate.
Emeric Brun2525b6b2012-10-18 15:59:43 +02009624
Willy Tarreau74ca5042013-06-11 23:12:07 +02009625ssl_fc_has_sni : boolean
9626 This checks for the presence of a Server Name Indication TLS extension (SNI)
Willy Tarreauf7bc57c2012-10-03 00:19:48 +02009627 in an incoming connection was made over an SSL/TLS transport layer. Returns
9628 true when the incoming connection presents a TLS SNI field. This requires
9629 that the SSL library is build with support for TLS extensions enabled (check
9630 haproxy -vv).
Willy Tarreau7875d092012-09-10 08:20:03 +02009631
Willy Tarreau74ca5042013-06-11 23:12:07 +02009632ssl_fc_npn : string
9633 This extracts the Next Protocol Negociation field from an incoming connection
9634 made via a TLS transport layer and locally deciphered by haproxy. The result
9635 is a string containing the protocol name advertised by the client. The SSL
9636 library must have been built with support for TLS extensions enabled (check
9637 haproxy -vv). Note that the TLS NPN extension is not advertised unless the
9638 "npn" keyword on the "bind" line specifies a protocol list. Also, nothing
9639 forces the client to pick a protocol from this list, any other one may be
9640 requested. Please note that the TLS NPN extension was replaced with ALPN.
Willy Tarreaua33c6542012-10-15 13:19:06 +02009641
Willy Tarreau74ca5042013-06-11 23:12:07 +02009642 ACL derivatives :
9643 ssl_fc_npn : exact string match
Emeric Brun589fcad2012-10-16 14:13:26 +02009644
Willy Tarreau74ca5042013-06-11 23:12:07 +02009645ssl_fc_protocol : string
9646 Returns the name of the used protocol when the incoming connection was made
9647 over an SSL/TLS transport layer.
Willy Tarreau7875d092012-09-10 08:20:03 +02009648
Willy Tarreau74ca5042013-06-11 23:12:07 +02009649 ACL derivatives :
9650 ssl_fc_protocol : exact string match
9651
9652ssl_fc_session_id : binary
9653 Returns the SSL ID of the front connection when the incoming connection was
9654 made over an SSL/TLS transport layer. It is useful to stick a given client to
9655 a server. It is important to note that some browsers refresh their session ID
9656 every few minutes.
Willy Tarreau7875d092012-09-10 08:20:03 +02009657
Willy Tarreau74ca5042013-06-11 23:12:07 +02009658ssl_fc_sni : string
9659 This extracts the Server Name Indication TLS extension (SNI) field from an
9660 incoming connection made via an SSL/TLS transport layer and locally
9661 deciphered by haproxy. The result (when present) typically is a string
9662 matching the HTTPS host name (253 chars or less). The SSL library must have
9663 been built with support for TLS extensions enabled (check haproxy -vv).
9664
9665 This fetch is different from "req_ssl_sni" above in that it applies to the
9666 connection being deciphered by haproxy and not to SSL contents being blindly
9667 forwarded. See also "ssl_fc_sni_end" and "ssl_fc_sni_reg" below. This
Cyril Bonté9c1eb1e2012-10-09 22:45:34 +02009668 requires that the SSL library is build with support for TLS extensions
9669 enabled (check haproxy -vv).
Willy Tarreau62644772008-07-16 18:36:06 +02009670
Willy Tarreau74ca5042013-06-11 23:12:07 +02009671 ACL derivatives :
9672 ssl_fc_sni : exact string match
9673 ssl_fc_sni_end : suffix match
9674 ssl_fc_sni_reg : regex match
Emeric Brun589fcad2012-10-16 14:13:26 +02009675
Willy Tarreau74ca5042013-06-11 23:12:07 +02009676ssl_fc_use_keysize : integer
9677 Returns the symmetric cipher key size used in bits when the incoming
9678 connection was made over an SSL/TLS transport layer.
Willy Tarreaub6fb4202008-07-20 11:18:28 +02009679
Willy Tarreaub6fb4202008-07-20 11:18:28 +02009680
Willy Tarreau74ca5042013-06-11 23:12:07 +020096817.3.4. Fetching samples from buffer contents (Layer 6)
9682------------------------------------------------------
Willy Tarreaub6fb4202008-07-20 11:18:28 +02009683
Willy Tarreau74ca5042013-06-11 23:12:07 +02009684Fetching samples from buffer contents is a bit different from the previous
9685sample fetches above because the sampled data are ephemeral. These data can
9686only be used when they're available and will be lost when they're forwarded.
9687For this reason, samples fetched from buffer contents during a request cannot
9688be used in a response for example. Even while the data are being fetched, they
9689can change. Sometimes it is necessary to set some delays or combine multiple
9690sample fetch methods to ensure that the expected data are complete and usable,
9691for example through TCP request content inspection. Please see the "tcp-request
9692content" keyword for more detailed information on the subject.
Willy Tarreau62644772008-07-16 18:36:06 +02009693
Willy Tarreau74ca5042013-06-11 23:12:07 +02009694payload(<offset>,<length>) : binary (deprecated)
9695 This is an alias for "req.payload" when used in the context of a request (eg:
9696 "stick on", "stick match"), and for "res.payload" when used in the context of
9697 a response such as in "stick store response".
Willy Tarreau0ba27502007-12-24 16:55:16 +01009698
Willy Tarreau74ca5042013-06-11 23:12:07 +02009699payload_lv(<offset1>,<length>[,<offset2>]) : binary (deprecated)
9700 This is an alias for "req.payload_lv" when used in the context of a request
9701 (eg: "stick on", "stick match"), and for "res.payload_lv" when used in the
9702 context of a response such as in "stick store response".
Willy Tarreau0ba27502007-12-24 16:55:16 +01009703
Willy Tarreau74ca5042013-06-11 23:12:07 +02009704req.len : integer
9705req_len : integer (deprecated)
9706 Returns an integer value corresponding to the number of bytes present in the
9707 request buffer. This is mostly used in ACL. It is important to understand
9708 that this test does not return false as long as the buffer is changing. This
9709 means that a check with equality to zero will almost always immediately match
9710 at the beginning of the session, while a test for more data will wait for
9711 that data to come in and return false only when haproxy is certain that no
9712 more data will come in. This test was designed to be used with TCP request
9713 content inspection.
Willy Tarreaua7ad50c2012-04-29 15:39:40 +02009714
Willy Tarreau74ca5042013-06-11 23:12:07 +02009715req.payload(<offset>,<length>) : binary
9716 This extracts a binary block of <length> bytes and starting at byte <offset>
Willy Tarreau00f00842013-08-02 11:07:32 +02009717 in the request buffer. As a special case, if the <length> argument is zero,
9718 the the whole buffer from <offset> to the end is extracted. This can be used
9719 with ACLs in order to check for the presence of some content in a buffer at
9720 any location.
Willy Tarreaua7ad50c2012-04-29 15:39:40 +02009721
Willy Tarreau74ca5042013-06-11 23:12:07 +02009722 ACL alternatives :
9723 payload(<offset>,<length>) : hex binary match
Willy Tarreaua7ad50c2012-04-29 15:39:40 +02009724
Willy Tarreau74ca5042013-06-11 23:12:07 +02009725req.payload_lv(<offset1>,<length>[,<offset2>]) : binary
9726 This extracts a binary block whose size is specified at <offset1> for <length>
9727 bytes, and which starts at <offset2> if specified or just after the length in
9728 the request buffer. The <offset2> parameter also supports relative offsets if
9729 prepended with a '+' or '-' sign.
Willy Tarreaua7ad50c2012-04-29 15:39:40 +02009730
Willy Tarreau74ca5042013-06-11 23:12:07 +02009731 ACL alternatives :
9732 payload_lv(<offset1>,<length>[,<offset2>]) : hex binary match
Willy Tarreaua7ad50c2012-04-29 15:39:40 +02009733
Willy Tarreau74ca5042013-06-11 23:12:07 +02009734 Example : please consult the example from the "stick store-response" keyword.
Willy Tarreaua7ad50c2012-04-29 15:39:40 +02009735
Willy Tarreau74ca5042013-06-11 23:12:07 +02009736req.proto_http : boolean
9737req_proto_http : boolean (deprecated)
9738 Returns true when data in the request buffer look like HTTP and correctly
9739 parses as such. It is the same parser as the common HTTP request parser which
9740 is used so there should be no surprises. The test does not match until the
9741 request is complete, failed or timed out. This test may be used to report the
9742 protocol in TCP logs, but the biggest use is to block TCP request analysis
9743 until a complete HTTP request is present in the buffer, for example to track
9744 a header.
Willy Tarreaua7ad50c2012-04-29 15:39:40 +02009745
Willy Tarreau74ca5042013-06-11 23:12:07 +02009746 Example:
9747 # track request counts per "base" (concatenation of Host+URL)
9748 tcp-request inspect-delay 10s
9749 tcp-request content reject if !HTTP
Willy Tarreaube4a3ef2013-06-17 15:04:07 +02009750 tcp-request content track-sc0 base table req-rate
Willy Tarreaua7ad50c2012-04-29 15:39:40 +02009751
Willy Tarreau74ca5042013-06-11 23:12:07 +02009752req.rdp_cookie([<name>]) : string
9753rdp_cookie([<name>]) : string (deprecated)
9754 When the request buffer looks like the RDP protocol, extracts the RDP cookie
9755 <name>, or any cookie if unspecified. The parser only checks for the first
9756 cookie, as illustrated in the RDP protocol specification. The cookie name is
9757 case insensitive. Generally the "MSTS" cookie name will be used, as it can
9758 contain the user name of the client connecting to the server if properly
9759 configured on the client. The "MSTSHASH" cookie is often used as well for
9760 session stickiness to servers.
Willy Tarreau04aa6a92012-04-06 18:57:55 +02009761
Willy Tarreau74ca5042013-06-11 23:12:07 +02009762 This differs from "balance rdp-cookie" in that any balancing algorithm may be
9763 used and thus the distribution of clients to backend servers is not linked to
9764 a hash of the RDP cookie. It is envisaged that using a balancing algorithm
9765 such as "balance roundrobin" or "balance leastconn" will lead to a more even
9766 distribution of clients to backend servers than the hash used by "balance
9767 rdp-cookie".
Willy Tarreau04aa6a92012-04-06 18:57:55 +02009768
Willy Tarreau74ca5042013-06-11 23:12:07 +02009769 ACL derivatives :
9770 req_rdp_cookie([<name>]) : exact string match
Willy Tarreau04aa6a92012-04-06 18:57:55 +02009771
Willy Tarreau74ca5042013-06-11 23:12:07 +02009772 Example :
9773 listen tse-farm
9774 bind 0.0.0.0:3389
9775 # wait up to 5s for an RDP cookie in the request
9776 tcp-request inspect-delay 5s
9777 tcp-request content accept if RDP_COOKIE
9778 # apply RDP cookie persistence
9779 persist rdp-cookie
9780 # Persist based on the mstshash cookie
9781 # This is only useful makes sense if
9782 # balance rdp-cookie is not used
9783 stick-table type string size 204800
9784 stick on req.rdp_cookie(mstshash)
9785 server srv1 1.1.1.1:3389
9786 server srv1 1.1.1.2:3389
Willy Tarreau04aa6a92012-04-06 18:57:55 +02009787
Willy Tarreau74ca5042013-06-11 23:12:07 +02009788 See also : "balance rdp-cookie", "persist rdp-cookie", "tcp-request" and the
9789 "req_rdp_cookie" ACL.
Willy Tarreau04aa6a92012-04-06 18:57:55 +02009790
Willy Tarreau74ca5042013-06-11 23:12:07 +02009791req.rdp_cookie_cnt([name]) : integer
9792rdp_cookie_cnt([name]) : integer (deprecated)
9793 Tries to parse the request buffer as RDP protocol, then returns an integer
9794 corresponding to the number of RDP cookies found. If an optional cookie name
9795 is passed, only cookies matching this name are considered. This is mostly
9796 used in ACL.
Willy Tarreau04aa6a92012-04-06 18:57:55 +02009797
Willy Tarreau74ca5042013-06-11 23:12:07 +02009798 ACL derivatives :
9799 req_rdp_cookie_cnt([<name>]) : integer match
Willy Tarreau04aa6a92012-04-06 18:57:55 +02009800
Willy Tarreau74ca5042013-06-11 23:12:07 +02009801req.ssl_hello_type : integer
9802req_ssl_hello_type : integer (deprecated)
9803 Returns an integer value containing the type of the SSL hello message found
9804 in the request buffer if the buffer contains data that parse as a complete
9805 SSL (v3 or superior) client hello message. Note that this only applies to raw
9806 contents found in the request buffer and not to contents deciphered via an
9807 SSL data layer, so this will not work with "bind" lines having the "ssl"
9808 option. This is mostly used in ACL to detect presence of an SSL hello message
9809 that is supposed to contain an SSL session ID usable for stickiness.
Willy Tarreau04aa6a92012-04-06 18:57:55 +02009810
Willy Tarreau74ca5042013-06-11 23:12:07 +02009811req.ssl_sni : string
9812req_ssl_sni : string (deprecated)
9813 Returns a string containing the value of the Server Name TLS extension sent
9814 by a client in a TLS stream passing through the request buffer if the buffer
9815 contains data that parse as a complete SSL (v3 or superior) client hello
9816 message. Note that this only applies to raw contents found in the request
9817 buffer and not to contents deciphered via an SSL data layer, so this will not
9818 work with "bind" lines having the "ssl" option. SNI normally contains the
9819 name of the host the client tries to connect to (for recent browsers). SNI is
9820 useful for allowing or denying access to certain hosts when SSL/TLS is used
9821 by the client. This test was designed to be used with TCP request content
9822 inspection. If content switching is needed, it is recommended to first wait
9823 for a complete client hello (type 1), like in the example below. See also
9824 "ssl_fc_sni".
Willy Tarreau04aa6a92012-04-06 18:57:55 +02009825
Willy Tarreau74ca5042013-06-11 23:12:07 +02009826 ACL derivatives :
9827 req_ssl_sni : exact string match
Willy Tarreau04aa6a92012-04-06 18:57:55 +02009828
Willy Tarreau74ca5042013-06-11 23:12:07 +02009829 Examples :
9830 # Wait for a client hello for at most 5 seconds
9831 tcp-request inspect-delay 5s
9832 tcp-request content accept if { req_ssl_hello_type 1 }
9833 use_backend bk_allow if { req_ssl_sni -f allowed_sites }
9834 default_backend bk_sorry_page
Willy Tarreau04aa6a92012-04-06 18:57:55 +02009835
Willy Tarreau74ca5042013-06-11 23:12:07 +02009836res.ssl_hello_type : integer
9837rep_ssl_hello_type : integer (deprecated)
9838 Returns an integer value containing the type of the SSL hello message found
9839 in the response buffer if the buffer contains data that parses as a complete
9840 SSL (v3 or superior) hello message. Note that this only applies to raw
9841 contents found in the response buffer and not to contents deciphered via an
9842 SSL data layer, so this will not work with "server" lines having the "ssl"
9843 option. This is mostly used in ACL to detect presence of an SSL hello message
9844 that is supposed to contain an SSL session ID usable for stickiness.
Willy Tarreau51539362012-05-08 12:46:28 +02009845
Willy Tarreau74ca5042013-06-11 23:12:07 +02009846req.ssl_ver : integer
9847req_ssl_ver : integer (deprecated)
9848 Returns an integer value containing the version of the SSL/TLS protocol of a
9849 stream present in the request buffer. Both SSLv2 hello messages and SSLv3
9850 messages are supported. TLSv1 is announced as SSL version 3.1. The value is
9851 composed of the major version multiplied by 65536, added to the minor
9852 version. Note that this only applies to raw contents found in the request
9853 buffer and not to contents deciphered via an SSL data layer, so this will not
9854 work with "bind" lines having the "ssl" option. The ACL version of the test
9855 matches against a decimal notation in the form MAJOR.MINOR (eg: 3.1). This
9856 fetch is mostly used in ACL.
Willy Tarreaud63335a2010-02-26 12:56:52 +01009857
Willy Tarreau74ca5042013-06-11 23:12:07 +02009858 ACL derivatives :
9859 req_ssl_ver : decimal match
Willy Tarreaud63335a2010-02-26 12:56:52 +01009860
Willy Tarreau47e8eba2013-09-11 23:28:46 +02009861res.len : integer
9862 Returns an integer value corresponding to the number of bytes present in the
9863 response buffer. This is mostly used in ACL. It is important to understand
9864 that this test does not return false as long as the buffer is changing. This
9865 means that a check with equality to zero will almost always immediately match
9866 at the beginning of the session, while a test for more data will wait for
9867 that data to come in and return false only when haproxy is certain that no
9868 more data will come in. This test was designed to be used with TCP response
9869 content inspection.
9870
Willy Tarreau74ca5042013-06-11 23:12:07 +02009871res.payload(<offset>,<length>) : binary
9872 This extracts a binary block of <length> bytes and starting at byte <offset>
Willy Tarreau00f00842013-08-02 11:07:32 +02009873 in the response buffer. As a special case, if the <length> argument is zero,
9874 the the whole buffer from <offset> to the end is extracted. This can be used
9875 with ACLs in order to check for the presence of some content in a buffer at
9876 any location.
Willy Tarreaud63335a2010-02-26 12:56:52 +01009877
Willy Tarreau74ca5042013-06-11 23:12:07 +02009878res.payload_lv(<offset1>,<length>[,<offset2>]) : binary
9879 This extracts a binary block whose size is specified at <offset1> for <length>
9880 bytes, and which starts at <offset2> if specified or just after the length in
9881 the response buffer. The <offset2> parameter also supports relative offsets
9882 if prepended with a '+' or '-' sign.
Willy Tarreaud63335a2010-02-26 12:56:52 +01009883
Willy Tarreau74ca5042013-06-11 23:12:07 +02009884 Example : please consult the example from the "stick store-response" keyword.
Willy Tarreaud63335a2010-02-26 12:56:52 +01009885
Willy Tarreau74ca5042013-06-11 23:12:07 +02009886wait_end : boolean
9887 This fetch either returns true when the inspection period is over, or does
9888 not fetch. It is only used in ACLs, in conjunction with content analysis to
9889 avoid returning a wrong verdict early. It may also be used to delay some
9890 actions, such as a delayed reject for some special addresses. Since it either
9891 stops the rules evaluation or immediately returns true, it is recommended to
9892 use this acl as the last one in a rule. Please note that the default ACL
9893 "WAIT_END" is always usable without prior declaration. This test was designed
9894 to be used with TCP request content inspection.
Willy Tarreaud63335a2010-02-26 12:56:52 +01009895
Willy Tarreau74ca5042013-06-11 23:12:07 +02009896 Examples :
9897 # delay every incoming request by 2 seconds
9898 tcp-request inspect-delay 2s
9899 tcp-request content accept if WAIT_END
Willy Tarreaud63335a2010-02-26 12:56:52 +01009900
Willy Tarreau74ca5042013-06-11 23:12:07 +02009901 # don't immediately tell bad guys they are rejected
9902 tcp-request inspect-delay 10s
9903 acl goodguys src 10.0.0.0/24
9904 acl badguys src 10.0.1.0/24
9905 tcp-request content accept if goodguys
9906 tcp-request content reject if badguys WAIT_END
9907 tcp-request content reject
9908
9909
99107.3.5. Fetching HTTP samples (Layer 7)
9911--------------------------------------
9912
9913It is possible to fetch samples from HTTP contents, requests and responses.
9914This application layer is also called layer 7. It is only possible to fetch the
9915data in this section when a full HTTP request or response has been parsed from
9916its respective request or response buffer. This is always the case with all
9917HTTP specific rules and for sections running with "mode http". When using TCP
9918content inspection, it may be necessary to support an inspection delay in order
9919to let the request or response come in first. These fetches may require a bit
9920more CPU resources than the layer 4 ones, but not much since the request and
9921response are indexed.
9922
9923base : string
9924 This returns the concatenation of the first Host header and the path part of
9925 the request, which starts at the first slash and ends before the question
9926 mark. It can be useful in virtual hosted environments to detect URL abuses as
9927 well as to improve shared caches efficiency. Using this with a limited size
9928 stick table also allows one to collect statistics about most commonly
9929 requested objects by host/path. With ACLs it can allow simple content
9930 switching rules involving the host and the path at the same time, such as
9931 "www.example.com/favicon.ico". See also "path" and "uri".
9932
9933 ACL derivatives :
9934 base : exact string match
9935 base_beg : prefix match
9936 base_dir : subdir match
9937 base_dom : domain match
9938 base_end : suffix match
9939 base_len : length match
9940 base_reg : regex match
9941 base_sub : substring match
9942
9943base32 : integer
9944 This returns a 32-bit hash of the value returned by the "base" fetch method
9945 above. This is useful to track per-URL activity on high traffic sites without
9946 having to store all URLs. Instead a shorter hash is stored, saving a lot of
9947 memory. The output type is an unsigned integer.
9948
9949base32+src : binary
9950 This returns the concatenation of the base32 fetch above and the src fetch
9951 below. The resulting type is of type binary, with a size of 8 or 20 bytes
9952 depending on the source address family. This can be used to track per-IP,
9953 per-URL counters.
9954
9955req.cook([<name>]) : string
9956cook([<name>]) : string (deprecated)
9957 This extracts the last occurrence of the cookie name <name> on a "Cookie"
9958 header line from the request, and returns its value as string. If no name is
9959 specified, the first cookie value is returned. When used with ACLs, all
9960 matching cookies are evaluated. Spaces around the name and the value are
9961 ignored as requested by the Cookie header specification (RFC6265). The cookie
9962 name is case-sensitive. Empty cookies are valid, so an empty cookie may very
9963 well return an empty value if it is present. Use the "found" match to detect
9964 presence. Use the res.cook() variant for response cookies sent by the server.
9965
9966 ACL derivatives :
9967 cook([<name>]) : exact string match
9968 cook_beg([<name>]) : prefix match
9969 cook_dir([<name>]) : subdir match
9970 cook_dom([<name>]) : domain match
9971 cook_end([<name>]) : suffix match
9972 cook_len([<name>]) : length match
9973 cook_reg([<name>]) : regex match
9974 cook_sub([<name>]) : substring match
Willy Tarreaud63335a2010-02-26 12:56:52 +01009975
Willy Tarreau74ca5042013-06-11 23:12:07 +02009976req.cook_cnt([<name>]) : integer
9977cook_cnt([<name>]) : integer (deprecated)
9978 Returns an integer value representing the number of occurrences of the cookie
9979 <name> in the request, or all cookies if <name> is not specified.
Willy Tarreaud63335a2010-02-26 12:56:52 +01009980
Willy Tarreau74ca5042013-06-11 23:12:07 +02009981req.cook_val([<name>]) : integer
9982cook_val([<name>]) : integer (deprecated)
9983 This extracts the last occurrence of the cookie name <name> on a "Cookie"
9984 header line from the request, and converts its value to an integer which is
9985 returned. If no name is specified, the first cookie value is returned. When
9986 used in ACLs, all matching names are iterated over until a value matches.
Willy Tarreau0e698542011-09-16 08:32:32 +02009987
Willy Tarreau74ca5042013-06-11 23:12:07 +02009988cookie([<name>]) : string (deprecated)
9989 This extracts the last occurrence of the cookie name <name> on a "Cookie"
9990 header line from the request, or a "Set-Cookie" header from the response, and
9991 returns its value as a string. A typical use is to get multiple clients
9992 sharing a same profile use the same server. This can be similar to what
9993 "appsession" does with the "request-learn" statement, but with support for
9994 multi-peer synchronization and state keeping across restarts. If no name is
9995 specified, the first cookie value is returned. This fetch should not be used
9996 anymore and should be replaced by req.cook() or res.cook() instead as it
9997 ambiguously uses the direction based on the context where it is used.
9998 See also : "appsession".
Willy Tarreaud63335a2010-02-26 12:56:52 +01009999
Willy Tarreau74ca5042013-06-11 23:12:07 +020010000hdr([<name>[,<occ>]]) : string
10001 This is equivalent to req.hdr() when used on requests, and to res.hdr() when
10002 used on responses. Please refer to these respective fetches for more details.
10003 In case of doubt about the fetch direction, please use the explicit ones.
10004 Note that contrary to the hdr() sample fetch method, the hdr_* ACL keywords
10005 unambiguouslly apply to the request headers.
Willy Tarreaud63335a2010-02-26 12:56:52 +010010006
Willy Tarreau74ca5042013-06-11 23:12:07 +020010007req.fhdr(<name>[,<occ>]) : string
10008 This extracts the last occurrence of header <name> in an HTTP request. When
10009 used from an ACL, all occurrences are iterated over until a match is found.
10010 Optionally, a specific occurrence might be specified as a position number.
10011 Positive values indicate a position from the first occurrence, with 1 being
10012 the first one. Negative values indicate positions relative to the last one,
10013 with -1 being the last one. It differs from req.hdr() in that any commas
10014 present in the value are returned and are not used as delimiters. This is
10015 sometimes useful with headers such as User-Agent.
Willy Tarreaud63335a2010-02-26 12:56:52 +010010016
Willy Tarreau74ca5042013-06-11 23:12:07 +020010017req.fhdr_cnt([<name>]) : integer
10018 Returns an integer value representing the number of occurrences of request
10019 header field name <name>, or the total number of header fields if <name> is
10020 not specified. Contrary to its req.hdr_cnt() cousin, this function returns
10021 the number of full line headers and does not stop on commas.
Willy Tarreaud63335a2010-02-26 12:56:52 +010010022
Willy Tarreau74ca5042013-06-11 23:12:07 +020010023req.hdr([<name>[,<occ>]]) : string
10024 This extracts the last occurrence of header <name> in an HTTP request. When
10025 used from an ACL, all occurrences are iterated over until a match is found.
10026 Optionally, a specific occurrence might be specified as a position number.
10027 Positive values indicate a position from the first occurrence, with 1 being
10028 the first one. Negative values indicate positions relative to the last one,
10029 with -1 being the last one. A typical use is with the X-Forwarded-For header
10030 once converted to IP, associated with an IP stick-table. The function
10031 considers any comma as a delimiter for distinct values. If full-line headers
10032 are desired instead, use req.fhdr(). Please carefully check RFC2616 to know
10033 how certain headers are supposed to be parsed. Also, some of them are case
10034 insensitive (eg: Connection).
Willy Tarreaud63335a2010-02-26 12:56:52 +010010035
Willy Tarreau74ca5042013-06-11 23:12:07 +020010036 ACL derivatives :
10037 hdr([<name>[,<occ>]]) : exact string match
10038 hdr_beg([<name>[,<occ>]]) : prefix match
10039 hdr_dir([<name>[,<occ>]]) : subdir match
10040 hdr_dom([<name>[,<occ>]]) : domain match
10041 hdr_end([<name>[,<occ>]]) : suffix match
10042 hdr_len([<name>[,<occ>]]) : length match
10043 hdr_reg([<name>[,<occ>]]) : regex match
10044 hdr_sub([<name>[,<occ>]]) : substring match
10045
10046req.hdr_cnt([<name>]) : integer
10047hdr_cnt([<header>]) : integer (deprecated)
10048 Returns an integer value representing the number of occurrences of request
10049 header field name <name>, or the total number of header field values if
10050 <name> is not specified. It is important to remember that one header line may
10051 count as several headers if it has several values. The function considers any
10052 comma as a delimiter for distinct values. If full-line headers are desired
10053 instead, req.fhdr_cnt() should be used instead. With ACLs, it can be used to
10054 detect presence, absence or abuse of a specific header, as well as to block
10055 request smuggling attacks by rejecting requests which contain more than one
10056 of certain headers. See "req.hdr" for more information on header matching.
10057
10058req.hdr_ip([<name>[,<occ>]]) : ip
10059hdr_ip([<name>[,<occ>]]) : ip (deprecated)
10060 This extracts the last occurrence of header <name> in an HTTP request,
10061 converts it to an IPv4 or IPv6 address and returns this address. When used
10062 with ACLs, all occurrences are checked, and if <name> is omitted, every value
10063 of every header is checked. Optionally, a specific occurrence might be
10064 specified as a position number. Positive values indicate a position from the
10065 first occurrence, with 1 being the first one. Negative values indicate
10066 positions relative to the last one, with -1 being the last one. A typical use
10067 is with the X-Forwarded-For and X-Client-IP headers.
10068
10069req.hdr_val([<name>[,<occ>]]) : integer
10070hdr_val([<name>[,<occ>]]) : integer (deprecated)
10071 This extracts the last occurrence of header <name> in an HTTP request, and
10072 converts it to an integer value. When used with ACLs, all occurrences are
10073 checked, and if <name> is omitted, every value of every header is checked.
10074 Optionally, a specific occurrence might be specified as a position number.
10075 Positive values indicate a position from the first occurrence, with 1 being
10076 the first one. Negative values indicate positions relative to the last one,
10077 with -1 being the last one. A typical use is with the X-Forwarded-For header.
10078
10079http_auth(<userlist>) : boolean
10080 Returns a boolean indicating whether the authentication data received from
10081 the client match a username & password stored in the specified userlist. This
10082 fetch function is not really useful outside of ACLs. Currently only http
10083 basic auth is supported.
10084
10085http_auth_group(<userlist>) : group
10086 Returns a boolean indicating whether the authentication data received from
10087 the client match a username & password stored in the specified userlist, and
10088 whether that username belongs to one of the groups supplied in ACL patterns.
10089 This fetch function is not really useful outside of ACLs. Currently only http
10090 basic auth is supported.
10091
10092 ACL derivatives :
10093 http_auth_group(<userlist>) : user group match
10094
10095http_first_req : boolean
Willy Tarreau7f18e522010-10-22 20:04:13 +020010096 Returns true when the request being processed is the first one of the
10097 connection. This can be used to add or remove headers that may be missing
Willy Tarreau74ca5042013-06-11 23:12:07 +020010098 from some requests when a request is not the first one, or to help grouping
10099 requests in the logs.
Willy Tarreau7f18e522010-10-22 20:04:13 +020010100
Willy Tarreau74ca5042013-06-11 23:12:07 +020010101method : integer + string
10102 Returns an integer value corresponding to the method in the HTTP request. For
10103 example, "GET" equals 1 (check sources to establish the matching). Value 9
10104 means "other method" and may be converted to a string extracted from the
10105 stream. This should not be used directly as a sample, this is only meant to
10106 be used from ACLs, which transparently convert methods from patterns to these
10107 integer + string values. Some predefined ACL already check for most common
10108 methods.
Willy Tarreau6a06a402007-07-15 20:15:28 +020010109
Willy Tarreau74ca5042013-06-11 23:12:07 +020010110 ACL derivatives :
10111 method : case insensitive method match
Willy Tarreau6a06a402007-07-15 20:15:28 +020010112
Willy Tarreau74ca5042013-06-11 23:12:07 +020010113 Example :
10114 # only accept GET and HEAD requests
10115 acl valid_method method GET HEAD
10116 http-request deny if ! valid_method
Willy Tarreau6a06a402007-07-15 20:15:28 +020010117
Willy Tarreau74ca5042013-06-11 23:12:07 +020010118path : string
10119 This extracts the request's URL path, which starts at the first slash and
10120 ends before the question mark (without the host part). A typical use is with
10121 prefetch-capable caches, and with portals which need to aggregate multiple
10122 information from databases and keep them in caches. Note that with outgoing
10123 caches, it would be wiser to use "url" instead. With ACLs, it's typically
10124 used to match exact file names (eg: "/login.php"), or directory parts using
10125 the derivative forms. See also the "url" and "base" fetch methods.
Willy Tarreau6a06a402007-07-15 20:15:28 +020010126
Willy Tarreau74ca5042013-06-11 23:12:07 +020010127 ACL derivatives :
10128 path : exact string match
10129 path_beg : prefix match
10130 path_dir : subdir match
10131 path_dom : domain match
10132 path_end : suffix match
10133 path_len : length match
10134 path_reg : regex match
10135 path_sub : substring match
Willy Tarreau6a06a402007-07-15 20:15:28 +020010136
Willy Tarreau74ca5042013-06-11 23:12:07 +020010137req.ver : string
10138req_ver : string (deprecated)
10139 Returns the version string from the HTTP request, for example "1.1". This can
10140 be useful for logs, but is mostly there for ACL. Some predefined ACL already
10141 check for versions 1.0 and 1.1.
Willy Tarreaud63335a2010-02-26 12:56:52 +010010142
Willy Tarreau74ca5042013-06-11 23:12:07 +020010143 ACL derivatives :
10144 req_ver : exact string match
Willy Tarreau0e698542011-09-16 08:32:32 +020010145
Willy Tarreau74ca5042013-06-11 23:12:07 +020010146res.comp : boolean
10147 Returns the boolean "true" value if the response has been compressed by
10148 HAProxy, otherwise returns boolean "false". This may be used to add
10149 information in the logs.
Willy Tarreau6a06a402007-07-15 20:15:28 +020010150
Willy Tarreau74ca5042013-06-11 23:12:07 +020010151res.comp_algo : string
10152 Returns a string containing the name of the algorithm used if the response
10153 was compressed by HAProxy, for example : "deflate". This may be used to add
10154 some information in the logs.
Willy Tarreaud63335a2010-02-26 12:56:52 +010010155
Willy Tarreau74ca5042013-06-11 23:12:07 +020010156res.cook([<name>]) : string
10157scook([<name>]) : string (deprecated)
10158 This extracts the last occurrence of the cookie name <name> on a "Set-Cookie"
10159 header line from the response, and returns its value as string. If no name is
10160 specified, the first cookie value is returned.
Willy Tarreau0ce3aa02012-04-25 18:46:33 +020010161
Willy Tarreau74ca5042013-06-11 23:12:07 +020010162 ACL derivatives :
10163 scook([<name>] : exact string match
Willy Tarreau0ce3aa02012-04-25 18:46:33 +020010164
Willy Tarreau74ca5042013-06-11 23:12:07 +020010165res.cook_cnt([<name>]) : integer
10166scook_cnt([<name>]) : integer (deprecated)
10167 Returns an integer value representing the number of occurrences of the cookie
10168 <name> in the response, or all cookies if <name> is not specified. This is
10169 mostly useful when combined with ACLs to detect suspicious responses.
Willy Tarreaud63335a2010-02-26 12:56:52 +010010170
Willy Tarreau74ca5042013-06-11 23:12:07 +020010171res.cook_val([<name>]) : integer
10172scook_val([<name>]) : integer (deprecated)
10173 This extracts the last occurrence of the cookie name <name> on a "Set-Cookie"
10174 header line from the response, and converts its value to an integer which is
10175 returned. If no name is specified, the first cookie value is returned.
Willy Tarreaud63335a2010-02-26 12:56:52 +010010176
Willy Tarreau74ca5042013-06-11 23:12:07 +020010177res.fhdr([<name>[,<occ>]]) : string
10178 This extracts the last occurrence of header <name> in an HTTP response, or of
10179 the last header if no <name> is specified. Optionally, a specific occurrence
10180 might be specified as a position number. Positive values indicate a position
10181 from the first occurrence, with 1 being the first one. Negative values
10182 indicate positions relative to the last one, with -1 being the last one. It
10183 differs from res.hdr() in that any commas present in the value are returned
10184 and are not used as delimiters. If this is not desired, the res.hdr() fetch
10185 should be used instead. This is sometimes useful with headers such as Date or
10186 Expires.
Willy Tarreau6a06a402007-07-15 20:15:28 +020010187
Willy Tarreau74ca5042013-06-11 23:12:07 +020010188res.fhdr_cnt([<name>]) : integer
10189 Returns an integer value representing the number of occurrences of response
10190 header field name <name>, or the total number of header fields if <name> is
10191 not specified. Contrary to its res.hdr_cnt() cousin, this function returns
10192 the number of full line headers and does not stop on commas. If this is not
10193 desired, the res.hdr_cnt() fetch should be used instead.
Willy Tarreau6a06a402007-07-15 20:15:28 +020010194
Willy Tarreau74ca5042013-06-11 23:12:07 +020010195res.hdr([<name>[,<occ>]]) : string
10196shdr([<name>[,<occ>]]) : string (deprecated)
10197 This extracts the last occurrence of header <name> in an HTTP response, or of
10198 the last header if no <name> is specified. Optionally, a specific occurrence
10199 might be specified as a position number. Positive values indicate a position
10200 from the first occurrence, with 1 being the first one. Negative values
10201 indicate positions relative to the last one, with -1 being the last one. This
10202 can be useful to learn some data into a stick-table. The function considers
10203 any comma as a delimiter for distinct values. If this is not desired, the
10204 res.fhdr() fetch should be used instead.
Willy Tarreau6a06a402007-07-15 20:15:28 +020010205
Willy Tarreau74ca5042013-06-11 23:12:07 +020010206 ACL derivatives :
10207 shdr([<name>[,<occ>]]) : exact string match
10208 shdr_beg([<name>[,<occ>]]) : prefix match
10209 shdr_dir([<name>[,<occ>]]) : subdir match
10210 shdr_dom([<name>[,<occ>]]) : domain match
10211 shdr_end([<name>[,<occ>]]) : suffix match
10212 shdr_len([<name>[,<occ>]]) : length match
10213 shdr_reg([<name>[,<occ>]]) : regex match
10214 shdr_sub([<name>[,<occ>]]) : substring match
10215
10216res.hdr_cnt([<name>]) : integer
10217shdr_cnt([<name>]) : integer (deprecated)
10218 Returns an integer value representing the number of occurrences of response
10219 header field name <name>, or the total number of header fields if <name> is
10220 not specified. The function considers any comma as a delimiter for distinct
10221 values. If this is not desired, the res.fhdr_cnt() fetch should be used
10222 instead.
Willy Tarreau6a06a402007-07-15 20:15:28 +020010223
Willy Tarreau74ca5042013-06-11 23:12:07 +020010224res.hdr_ip([<name>[,<occ>]]) : ip
10225shdr_ip([<name>[,<occ>]]) : ip (deprecated)
10226 This extracts the last occurrence of header <name> in an HTTP response,
10227 convert it to an IPv4 or IPv6 address and returns this address. Optionally, a
10228 specific occurrence might be specified as a position number. Positive values
10229 indicate a position from the first occurrence, with 1 being the first one.
10230 Negative values indicate positions relative to the last one, with -1 being
10231 the last one. This can be useful to learn some data into a stick table.
Willy Tarreau6a06a402007-07-15 20:15:28 +020010232
Willy Tarreau74ca5042013-06-11 23:12:07 +020010233res.hdr_val([<name>[,<occ>]]) : integer
10234shdr_val([<name>[,<occ>]]) : integer (deprecated)
10235 This extracts the last occurrence of header <name> in an HTTP response, and
10236 converts it to an integer value. Optionally, a specific occurrence might be
10237 specified as a position number. Positive values indicate a position from the
10238 first occurrence, with 1 being the first one. Negative values indicate
10239 positions relative to the last one, with -1 being the last one. This can be
10240 useful to learn some data into a stick table.
Alexandre Cassen5eb1a902007-11-29 15:43:32 +010010241
Willy Tarreau74ca5042013-06-11 23:12:07 +020010242res.ver : string
10243resp_ver : string (deprecated)
10244 Returns the version string from the HTTP response, for example "1.1". This
10245 can be useful for logs, but is mostly there for ACL.
Willy Tarreau0e698542011-09-16 08:32:32 +020010246
Willy Tarreau74ca5042013-06-11 23:12:07 +020010247 ACL derivatives :
10248 resp_ver : exact string match
Alexandre Cassen5eb1a902007-11-29 15:43:32 +010010249
Willy Tarreau74ca5042013-06-11 23:12:07 +020010250set-cookie([<name>]) : string (deprecated)
10251 This extracts the last occurrence of the cookie name <name> on a "Set-Cookie"
10252 header line from the response and uses the corresponding value to match. This
10253 can be comparable to what "appsession" does with default options, but with
10254 support for multi-peer synchronization and state keeping across restarts.
Krzysztof Piotr Oledzki6b35ce12010-02-01 23:35:44 +010010255
Willy Tarreau74ca5042013-06-11 23:12:07 +020010256 This fetch function is deprecated and has been superseded by the "res.cook"
10257 fetch. This keyword will disappear soon.
Krzysztof Piotr Oledzki6b35ce12010-02-01 23:35:44 +010010258
Willy Tarreau74ca5042013-06-11 23:12:07 +020010259 See also : "appsession"
Willy Tarreau25c1ebc2012-04-25 16:21:44 +020010260
Willy Tarreau74ca5042013-06-11 23:12:07 +020010261status : integer
10262 Returns an integer containing the HTTP status code in the HTTP response, for
10263 example, 302. It is mostly used within ACLs and integer ranges, for example,
10264 to remove any Location header if the response is not a 3xx.
Willy Tarreau25c1ebc2012-04-25 16:21:44 +020010265
Willy Tarreau74ca5042013-06-11 23:12:07 +020010266url : string
10267 This extracts the request's URL as presented in the request. A typical use is
10268 with prefetch-capable caches, and with portals which need to aggregate
10269 multiple information from databases and keep them in caches. With ACLs, using
10270 "path" is preferred over using "url", because clients may send a full URL as
10271 is normally done with proxies. The only real use is to match "*" which does
10272 not match in "path", and for which there is already a predefined ACL. See
10273 also "path" and "base".
Willy Tarreau25c1ebc2012-04-25 16:21:44 +020010274
Willy Tarreau74ca5042013-06-11 23:12:07 +020010275 ACL derivatives :
10276 url : exact string match
10277 url_beg : prefix match
10278 url_dir : subdir match
10279 url_dom : domain match
10280 url_end : suffix match
10281 url_len : length match
10282 url_reg : regex match
10283 url_sub : substring match
Willy Tarreau25c1ebc2012-04-25 16:21:44 +020010284
Willy Tarreau74ca5042013-06-11 23:12:07 +020010285url_ip : ip
10286 This extracts the IP address from the request's URL when the host part is
10287 presented as an IP address. Its use is very limited. For instance, a
10288 monitoring system might use this field as an alternative for the source IP in
10289 order to test what path a given source address would follow, or to force an
10290 entry in a table for a given source address. With ACLs it can be used to
10291 restrict access to certain systems through a proxy, for example when combined
10292 with option "http_proxy".
Willy Tarreau25c1ebc2012-04-25 16:21:44 +020010293
Willy Tarreau74ca5042013-06-11 23:12:07 +020010294url_port : integer
10295 This extracts the port part from the request's URL. Note that if the port is
10296 not specified in the request, port 80 is assumed. With ACLs it can be used to
10297 restrict access to certain systems through a proxy, for example when combined
10298 with option "http_proxy".
Willy Tarreau25c1ebc2012-04-25 16:21:44 +020010299
Willy Tarreau74ca5042013-06-11 23:12:07 +020010300urlp(<name>[,<delim>]) : string
10301url_param(<name>[,<delim>]) : string
10302 This extracts the first occurrence of the parameter <name> in the query
10303 string, which begins after either '?' or <delim>, and which ends before '&',
10304 ';' or <delim>. The parameter name is case-sensitive. The result is a string
10305 corresponding to the value of the parameter <name> as presented in the
10306 request (no URL decoding is performed). This can be used for session
10307 stickiness based on a client ID, to extract an application cookie passed as a
10308 URL parameter, or in ACLs to apply some checks. Note that the ACL version of
10309 this fetch do not iterate over multiple parameters and stop at the first one
10310 as well.
Willy Tarreau25c1ebc2012-04-25 16:21:44 +020010311
Willy Tarreau74ca5042013-06-11 23:12:07 +020010312 ACL derivatives :
10313 urlp(<name>[,<delim>]) : exact string match
10314 urlp_beg(<name>[,<delim>]) : prefix match
10315 urlp_dir(<name>[,<delim>]) : subdir match
10316 urlp_dom(<name>[,<delim>]) : domain match
10317 urlp_end(<name>[,<delim>]) : suffix match
10318 urlp_len(<name>[,<delim>]) : length match
10319 urlp_reg(<name>[,<delim>]) : regex match
10320 urlp_sub(<name>[,<delim>]) : substring match
Willy Tarreau25c1ebc2012-04-25 16:21:44 +020010321
Willy Tarreau25c1ebc2012-04-25 16:21:44 +020010322
Willy Tarreau74ca5042013-06-11 23:12:07 +020010323 Example :
10324 # match http://example.com/foo?PHPSESSIONID=some_id
10325 stick on urlp(PHPSESSIONID)
10326 # match http://example.com/foo;JSESSIONID=some_id
10327 stick on urlp(JSESSIONID,;)
Willy Tarreau25c1ebc2012-04-25 16:21:44 +020010328
Willy Tarreau74ca5042013-06-11 23:12:07 +020010329urlp_val(<name>[,<delim>]) : integer
10330 See "urlp" above. This one extracts the URL parameter <name> in the request
10331 and converts it to an integer value. This can be used for session stickiness
10332 based on a user ID for example, or with ACLs to match a page number or price.
Willy Tarreaua9fddca2012-07-31 07:51:48 +020010333
Willy Tarreau198a7442008-01-17 12:05:32 +010010334
Willy Tarreau74ca5042013-06-11 23:12:07 +0200103357.4. Pre-defined ACLs
Willy Tarreauc57f0e22009-05-10 13:12:33 +020010336---------------------
Willy Tarreauced27012008-01-17 20:35:34 +010010337
Willy Tarreauc57f0e22009-05-10 13:12:33 +020010338Some predefined ACLs are hard-coded so that they do not have to be declared in
10339every frontend which needs them. They all have their names in upper case in
Patrick Mézard2382ad62010-05-09 10:43:32 +020010340order to avoid confusion. Their equivalence is provided below.
Willy Tarreauced27012008-01-17 20:35:34 +010010341
Willy Tarreauc57f0e22009-05-10 13:12:33 +020010342ACL name Equivalent to Usage
10343---------------+-----------------------------+---------------------------------
Willy Tarreauc57f0e22009-05-10 13:12:33 +020010344FALSE always_false never match
Willy Tarreau2492d5b2009-07-11 00:06:00 +020010345HTTP req_proto_http match if protocol is valid HTTP
Willy Tarreauc57f0e22009-05-10 13:12:33 +020010346HTTP_1.0 req_ver 1.0 match HTTP version 1.0
10347HTTP_1.1 req_ver 1.1 match HTTP version 1.1
Willy Tarreaud63335a2010-02-26 12:56:52 +010010348HTTP_CONTENT hdr_val(content-length) gt 0 match an existing content-length
10349HTTP_URL_ABS url_reg ^[^/:]*:// match absolute URL with scheme
10350HTTP_URL_SLASH url_beg / match URL beginning with "/"
10351HTTP_URL_STAR url * match URL equal to "*"
10352LOCALHOST src 127.0.0.1/8 match connection from local host
Willy Tarreauc57f0e22009-05-10 13:12:33 +020010353METH_CONNECT method CONNECT match HTTP CONNECT method
10354METH_GET method GET HEAD match HTTP GET or HEAD method
10355METH_HEAD method HEAD match HTTP HEAD method
10356METH_OPTIONS method OPTIONS match HTTP OPTIONS method
10357METH_POST method POST match HTTP POST method
10358METH_TRACE method TRACE match HTTP TRACE method
Emeric Brunbede3d02009-06-30 17:54:00 +020010359RDP_COOKIE req_rdp_cookie_cnt gt 0 match presence of an RDP cookie
Willy Tarreauc57f0e22009-05-10 13:12:33 +020010360REQ_CONTENT req_len gt 0 match data in the request buffer
Willy Tarreaud63335a2010-02-26 12:56:52 +010010361TRUE always_true always match
Willy Tarreauc57f0e22009-05-10 13:12:33 +020010362WAIT_END wait_end wait for end of content analysis
10363---------------+-----------------------------+---------------------------------
Willy Tarreauced27012008-01-17 20:35:34 +010010364
Willy Tarreaub937b7e2010-01-12 15:27:54 +010010365
Willy Tarreauc57f0e22009-05-10 13:12:33 +0200103668. Logging
10367----------
Willy Tarreau844e3c52008-01-11 16:28:18 +010010368
Willy Tarreaucc6c8912009-02-22 10:53:55 +010010369One of HAProxy's strong points certainly lies is its precise logs. It probably
10370provides the finest level of information available for such a product, which is
10371very important for troubleshooting complex environments. Standard information
10372provided in logs include client ports, TCP/HTTP state timers, precise session
10373state at termination and precise termination cause, information about decisions
Krzysztof Piotr Oledzkif8645332009-12-13 21:55:50 +010010374to direct traffic to a server, and of course the ability to capture arbitrary
Willy Tarreaucc6c8912009-02-22 10:53:55 +010010375headers.
10376
10377In order to improve administrators reactivity, it offers a great transparency
10378about encountered problems, both internal and external, and it is possible to
10379send logs to different sources at the same time with different level filters :
10380
10381 - global process-level logs (system errors, start/stop, etc..)
10382 - per-instance system and internal errors (lack of resource, bugs, ...)
10383 - per-instance external troubles (servers up/down, max connections)
10384 - per-instance activity (client connections), either at the establishment or
10385 at the termination.
10386
10387The ability to distribute different levels of logs to different log servers
10388allow several production teams to interact and to fix their problems as soon
10389as possible. For example, the system team might monitor system-wide errors,
10390while the application team might be monitoring the up/down for their servers in
10391real time, and the security team might analyze the activity logs with one hour
10392delay.
10393
10394
Willy Tarreauc57f0e22009-05-10 13:12:33 +0200103958.1. Log levels
10396---------------
Willy Tarreaucc6c8912009-02-22 10:53:55 +010010397
Simon Hormandf791f52011-05-29 15:01:10 +090010398TCP and HTTP connections can be logged with information such as the date, time,
Willy Tarreaucc6c8912009-02-22 10:53:55 +010010399source IP address, destination address, connection duration, response times,
Simon Hormandf791f52011-05-29 15:01:10 +090010400HTTP request, HTTP return code, number of bytes transmitted, conditions
10401in which the session ended, and even exchanged cookies values. For example
10402track a particular user's problems. All messages may be sent to up to two
10403syslog servers. Check the "log" keyword in section 4.2 for more information
10404about log facilities.
Willy Tarreaucc6c8912009-02-22 10:53:55 +010010405
10406
Willy Tarreauc57f0e22009-05-10 13:12:33 +0200104078.2. Log formats
10408----------------
Willy Tarreaucc6c8912009-02-22 10:53:55 +010010409
William Lallemand48940402012-01-30 16:47:22 +010010410HAProxy supports 5 log formats. Several fields are common between these formats
Simon Hormandf791f52011-05-29 15:01:10 +090010411and will be detailed in the following sections. A few of them may vary
10412slightly with the configuration, due to indicators specific to certain
10413options. The supported formats are as follows :
Willy Tarreaucc6c8912009-02-22 10:53:55 +010010414
10415 - the default format, which is very basic and very rarely used. It only
10416 provides very basic information about the incoming connection at the moment
10417 it is accepted : source IP:port, destination IP:port, and frontend-name.
10418 This mode will eventually disappear so it will not be described to great
10419 extents.
10420
10421 - the TCP format, which is more advanced. This format is enabled when "option
10422 tcplog" is set on the frontend. HAProxy will then usually wait for the
10423 connection to terminate before logging. This format provides much richer
10424 information, such as timers, connection counts, queue size, etc... This
10425 format is recommended for pure TCP proxies.
10426
10427 - the HTTP format, which is the most advanced for HTTP proxying. This format
10428 is enabled when "option httplog" is set on the frontend. It provides the
10429 same information as the TCP format with some HTTP-specific fields such as
10430 the request, the status code, and captures of headers and cookies. This
10431 format is recommended for HTTP proxies.
10432
Emeric Brun3a058f32009-06-30 18:26:00 +020010433 - the CLF HTTP format, which is equivalent to the HTTP format, but with the
10434 fields arranged in the same order as the CLF format. In this mode, all
10435 timers, captures, flags, etc... appear one per field after the end of the
10436 common fields, in the same order they appear in the standard HTTP format.
10437
William Lallemand48940402012-01-30 16:47:22 +010010438 - the custom log format, allows you to make your own log line.
10439
Willy Tarreaucc6c8912009-02-22 10:53:55 +010010440Next sections will go deeper into details for each of these formats. Format
10441specification will be performed on a "field" basis. Unless stated otherwise, a
10442field is a portion of text delimited by any number of spaces. Since syslog
10443servers are susceptible of inserting fields at the beginning of a line, it is
10444always assumed that the first field is the one containing the process name and
10445identifier.
10446
10447Note : Since log lines may be quite long, the log examples in sections below
10448 might be broken into multiple lines. The example log lines will be
10449 prefixed with 3 closing angle brackets ('>>>') and each time a log is
10450 broken into multiple lines, each non-final line will end with a
10451 backslash ('\') and the next line will start indented by two characters.
10452
10453
Willy Tarreauc57f0e22009-05-10 13:12:33 +0200104548.2.1. Default log format
10455-------------------------
Willy Tarreaucc6c8912009-02-22 10:53:55 +010010456
10457This format is used when no specific option is set. The log is emitted as soon
10458as the connection is accepted. One should note that this currently is the only
10459format which logs the request's destination IP and ports.
10460
10461 Example :
10462 listen www
10463 mode http
10464 log global
10465 server srv1 127.0.0.1:8000
10466
10467 >>> Feb 6 12:12:09 localhost \
10468 haproxy[14385]: Connect from 10.0.1.2:33312 to 10.0.3.31:8012 \
10469 (www/HTTP)
10470
10471 Field Format Extract from the example above
10472 1 process_name '[' pid ']:' haproxy[14385]:
10473 2 'Connect from' Connect from
10474 3 source_ip ':' source_port 10.0.1.2:33312
10475 4 'to' to
10476 5 destination_ip ':' destination_port 10.0.3.31:8012
10477 6 '(' frontend_name '/' mode ')' (www/HTTP)
10478
10479Detailed fields description :
10480 - "source_ip" is the IP address of the client which initiated the connection.
10481 - "source_port" is the TCP port of the client which initiated the connection.
10482 - "destination_ip" is the IP address the client connected to.
10483 - "destination_port" is the TCP port the client connected to.
10484 - "frontend_name" is the name of the frontend (or listener) which received
10485 and processed the connection.
10486 - "mode is the mode the frontend is operating (TCP or HTTP).
10487
Willy Tarreauceb24bc2010-11-09 12:46:41 +010010488In case of a UNIX socket, the source and destination addresses are marked as
10489"unix:" and the ports reflect the internal ID of the socket which accepted the
10490connection (the same ID as reported in the stats).
10491
Willy Tarreaucc6c8912009-02-22 10:53:55 +010010492It is advised not to use this deprecated format for newer installations as it
10493will eventually disappear.
10494
10495
Willy Tarreauc57f0e22009-05-10 13:12:33 +0200104968.2.2. TCP log format
10497---------------------
Willy Tarreaucc6c8912009-02-22 10:53:55 +010010498
10499The TCP format is used when "option tcplog" is specified in the frontend, and
10500is the recommended format for pure TCP proxies. It provides a lot of precious
10501information for troubleshooting. Since this format includes timers and byte
10502counts, the log is normally emitted at the end of the session. It can be
10503emitted earlier if "option logasap" is specified, which makes sense in most
10504environments with long sessions such as remote terminals. Sessions which match
10505the "monitor" rules are never logged. It is also possible not to emit logs for
10506sessions for which no data were exchanged between the client and the server, by
Willy Tarreauc9bd0cc2009-05-10 11:57:02 +020010507specifying "option dontlognull" in the frontend. Successful connections will
10508not be logged if "option dontlog-normal" is specified in the frontend. A few
10509fields may slightly vary depending on some configuration options, those are
10510marked with a star ('*') after the field name below.
Willy Tarreaucc6c8912009-02-22 10:53:55 +010010511
10512 Example :
10513 frontend fnt
10514 mode tcp
10515 option tcplog
10516 log global
10517 default_backend bck
10518
10519 backend bck
10520 server srv1 127.0.0.1:8000
10521
10522 >>> Feb 6 12:12:56 localhost \
10523 haproxy[14387]: 10.0.1.2:33313 [06/Feb/2009:12:12:51.443] fnt \
10524 bck/srv1 0/0/5007 212 -- 0/0/0/0/3 0/0
10525
10526 Field Format Extract from the example above
10527 1 process_name '[' pid ']:' haproxy[14387]:
10528 2 client_ip ':' client_port 10.0.1.2:33313
10529 3 '[' accept_date ']' [06/Feb/2009:12:12:51.443]
10530 4 frontend_name fnt
10531 5 backend_name '/' server_name bck/srv1
10532 6 Tw '/' Tc '/' Tt* 0/0/5007
10533 7 bytes_read* 212
10534 8 termination_state --
10535 9 actconn '/' feconn '/' beconn '/' srv_conn '/' retries* 0/0/0/0/3
10536 10 srv_queue '/' backend_queue 0/0
10537
10538Detailed fields description :
10539 - "client_ip" is the IP address of the client which initiated the TCP
Willy Tarreauceb24bc2010-11-09 12:46:41 +010010540 connection to haproxy. If the connection was accepted on a UNIX socket
10541 instead, the IP address would be replaced with the word "unix". Note that
10542 when the connection is accepted on a socket configured with "accept-proxy"
10543 and the PROXY protocol is correctly used, then the logs will reflect the
10544 forwarded connection's information.
Willy Tarreaucc6c8912009-02-22 10:53:55 +010010545
10546 - "client_port" is the TCP port of the client which initiated the connection.
Willy Tarreauceb24bc2010-11-09 12:46:41 +010010547 If the connection was accepted on a UNIX socket instead, the port would be
10548 replaced with the ID of the accepting socket, which is also reported in the
10549 stats interface.
Willy Tarreaucc6c8912009-02-22 10:53:55 +010010550
10551 - "accept_date" is the exact date when the connection was received by haproxy
10552 (which might be very slightly different from the date observed on the
10553 network if there was some queuing in the system's backlog). This is usually
10554 the same date which may appear in any upstream firewall's log.
10555
10556 - "frontend_name" is the name of the frontend (or listener) which received
10557 and processed the connection.
10558
10559 - "backend_name" is the name of the backend (or listener) which was selected
10560 to manage the connection to the server. This will be the same as the
10561 frontend if no switching rule has been applied, which is common for TCP
10562 applications.
10563
10564 - "server_name" is the name of the last server to which the connection was
10565 sent, which might differ from the first one if there were connection errors
10566 and a redispatch occurred. Note that this server belongs to the backend
10567 which processed the request. If the connection was aborted before reaching
10568 a server, "<NOSRV>" is indicated instead of a server name.
10569
10570 - "Tw" is the total time in milliseconds spent waiting in the various queues.
10571 It can be "-1" if the connection was aborted before reaching the queue.
10572 See "Timers" below for more details.
10573
10574 - "Tc" is the total time in milliseconds spent waiting for the connection to
10575 establish to the final server, including retries. It can be "-1" if the
10576 connection was aborted before a connection could be established. See
10577 "Timers" below for more details.
10578
10579 - "Tt" is the total time in milliseconds elapsed between the accept and the
10580 last close. It covers all possible processings. There is one exception, if
10581 "option logasap" was specified, then the time counting stops at the moment
10582 the log is emitted. In this case, a '+' sign is prepended before the value,
10583 indicating that the final one will be larger. See "Timers" below for more
10584 details.
10585
10586 - "bytes_read" is the total number of bytes transmitted from the server to
10587 the client when the log is emitted. If "option logasap" is specified, the
10588 this value will be prefixed with a '+' sign indicating that the final one
10589 may be larger. Please note that this value is a 64-bit counter, so log
10590 analysis tools must be able to handle it without overflowing.
10591
10592 - "termination_state" is the condition the session was in when the session
10593 ended. This indicates the session state, which side caused the end of
10594 session to happen, and for what reason (timeout, error, ...). The normal
10595 flags should be "--", indicating the session was closed by either end with
10596 no data remaining in buffers. See below "Session state at disconnection"
10597 for more details.
10598
10599 - "actconn" is the total number of concurrent connections on the process when
Jamie Gloudonaaa21002012-08-25 00:18:33 -040010600 the session was logged. It is useful to detect when some per-process system
Willy Tarreaucc6c8912009-02-22 10:53:55 +010010601 limits have been reached. For instance, if actconn is close to 512 when
10602 multiple connection errors occur, chances are high that the system limits
10603 the process to use a maximum of 1024 file descriptors and that all of them
Willy Tarreauc57f0e22009-05-10 13:12:33 +020010604 are used. See section 3 "Global parameters" to find how to tune the system.
Willy Tarreaucc6c8912009-02-22 10:53:55 +010010605
10606 - "feconn" is the total number of concurrent connections on the frontend when
10607 the session was logged. It is useful to estimate the amount of resource
10608 required to sustain high loads, and to detect when the frontend's "maxconn"
10609 has been reached. Most often when this value increases by huge jumps, it is
10610 because there is congestion on the backend servers, but sometimes it can be
10611 caused by a denial of service attack.
10612
10613 - "beconn" is the total number of concurrent connections handled by the
10614 backend when the session was logged. It includes the total number of
10615 concurrent connections active on servers as well as the number of
10616 connections pending in queues. It is useful to estimate the amount of
10617 additional servers needed to support high loads for a given application.
10618 Most often when this value increases by huge jumps, it is because there is
10619 congestion on the backend servers, but sometimes it can be caused by a
10620 denial of service attack.
10621
10622 - "srv_conn" is the total number of concurrent connections still active on
10623 the server when the session was logged. It can never exceed the server's
10624 configured "maxconn" parameter. If this value is very often close or equal
10625 to the server's "maxconn", it means that traffic regulation is involved a
10626 lot, meaning that either the server's maxconn value is too low, or that
10627 there aren't enough servers to process the load with an optimal response
10628 time. When only one of the server's "srv_conn" is high, it usually means
10629 that this server has some trouble causing the connections to take longer to
10630 be processed than on other servers.
10631
10632 - "retries" is the number of connection retries experienced by this session
10633 when trying to connect to the server. It must normally be zero, unless a
10634 server is being stopped at the same moment the connection was attempted.
10635 Frequent retries generally indicate either a network problem between
10636 haproxy and the server, or a misconfigured system backlog on the server
10637 preventing new connections from being queued. This field may optionally be
10638 prefixed with a '+' sign, indicating that the session has experienced a
10639 redispatch after the maximal retry count has been reached on the initial
10640 server. In this case, the server name appearing in the log is the one the
10641 connection was redispatched to, and not the first one, though both may
10642 sometimes be the same in case of hashing for instance. So as a general rule
10643 of thumb, when a '+' is present in front of the retry count, this count
10644 should not be attributed to the logged server.
10645
10646 - "srv_queue" is the total number of requests which were processed before
10647 this one in the server queue. It is zero when the request has not gone
10648 through the server queue. It makes it possible to estimate the approximate
10649 server's response time by dividing the time spent in queue by the number of
10650 requests in the queue. It is worth noting that if a session experiences a
10651 redispatch and passes through two server queues, their positions will be
10652 cumulated. A request should not pass through both the server queue and the
10653 backend queue unless a redispatch occurs.
10654
10655 - "backend_queue" is the total number of requests which were processed before
10656 this one in the backend's global queue. It is zero when the request has not
10657 gone through the global queue. It makes it possible to estimate the average
10658 queue length, which easily translates into a number of missing servers when
10659 divided by a server's "maxconn" parameter. It is worth noting that if a
10660 session experiences a redispatch, it may pass twice in the backend's queue,
10661 and then both positions will be cumulated. A request should not pass
10662 through both the server queue and the backend queue unless a redispatch
10663 occurs.
10664
10665
Willy Tarreauc57f0e22009-05-10 13:12:33 +0200106668.2.3. HTTP log format
10667----------------------
Willy Tarreaucc6c8912009-02-22 10:53:55 +010010668
10669The HTTP format is the most complete and the best suited for HTTP proxies. It
10670is enabled by when "option httplog" is specified in the frontend. It provides
10671the same level of information as the TCP format with additional features which
10672are specific to the HTTP protocol. Just like the TCP format, the log is usually
10673emitted at the end of the session, unless "option logasap" is specified, which
10674generally only makes sense for download sites. A session which matches the
10675"monitor" rules will never logged. It is also possible not to log sessions for
10676which no data were sent by the client by specifying "option dontlognull" in the
Willy Tarreauc9bd0cc2009-05-10 11:57:02 +020010677frontend. Successful connections will not be logged if "option dontlog-normal"
10678is specified in the frontend.
Willy Tarreaucc6c8912009-02-22 10:53:55 +010010679
10680Most fields are shared with the TCP log, some being different. A few fields may
10681slightly vary depending on some configuration options. Those ones are marked
10682with a star ('*') after the field name below.
10683
10684 Example :
10685 frontend http-in
10686 mode http
10687 option httplog
10688 log global
10689 default_backend bck
10690
10691 backend static
10692 server srv1 127.0.0.1:8000
10693
10694 >>> Feb 6 12:14:14 localhost \
10695 haproxy[14389]: 10.0.1.2:33317 [06/Feb/2009:12:14:14.655] http-in \
10696 static/srv1 10/0/30/69/109 200 2750 - - ---- 1/1/1/1/0 0/0 {1wt.eu} \
Willy Tarreaud72758d2010-01-12 10:42:19 +010010697 {} "GET /index.html HTTP/1.1"
Willy Tarreaucc6c8912009-02-22 10:53:55 +010010698
10699 Field Format Extract from the example above
10700 1 process_name '[' pid ']:' haproxy[14389]:
10701 2 client_ip ':' client_port 10.0.1.2:33317
10702 3 '[' accept_date ']' [06/Feb/2009:12:14:14.655]
10703 4 frontend_name http-in
10704 5 backend_name '/' server_name static/srv1
10705 6 Tq '/' Tw '/' Tc '/' Tr '/' Tt* 10/0/30/69/109
10706 7 status_code 200
10707 8 bytes_read* 2750
10708 9 captured_request_cookie -
10709 10 captured_response_cookie -
10710 11 termination_state ----
10711 12 actconn '/' feconn '/' beconn '/' srv_conn '/' retries* 1/1/1/1/0
10712 13 srv_queue '/' backend_queue 0/0
10713 14 '{' captured_request_headers* '}' {haproxy.1wt.eu}
10714 15 '{' captured_response_headers* '}' {}
10715 16 '"' http_request '"' "GET /index.html HTTP/1.1"
Willy Tarreaud72758d2010-01-12 10:42:19 +010010716
Willy Tarreaucc6c8912009-02-22 10:53:55 +010010717
10718Detailed fields description :
10719 - "client_ip" is the IP address of the client which initiated the TCP
Willy Tarreauceb24bc2010-11-09 12:46:41 +010010720 connection to haproxy. If the connection was accepted on a UNIX socket
10721 instead, the IP address would be replaced with the word "unix". Note that
10722 when the connection is accepted on a socket configured with "accept-proxy"
10723 and the PROXY protocol is correctly used, then the logs will reflect the
10724 forwarded connection's information.
Willy Tarreaucc6c8912009-02-22 10:53:55 +010010725
10726 - "client_port" is the TCP port of the client which initiated the connection.
Willy Tarreauceb24bc2010-11-09 12:46:41 +010010727 If the connection was accepted on a UNIX socket instead, the port would be
10728 replaced with the ID of the accepting socket, which is also reported in the
10729 stats interface.
Willy Tarreaucc6c8912009-02-22 10:53:55 +010010730
10731 - "accept_date" is the exact date when the TCP connection was received by
10732 haproxy (which might be very slightly different from the date observed on
10733 the network if there was some queuing in the system's backlog). This is
10734 usually the same date which may appear in any upstream firewall's log. This
10735 does not depend on the fact that the client has sent the request or not.
10736
10737 - "frontend_name" is the name of the frontend (or listener) which received
10738 and processed the connection.
10739
10740 - "backend_name" is the name of the backend (or listener) which was selected
10741 to manage the connection to the server. This will be the same as the
10742 frontend if no switching rule has been applied.
10743
10744 - "server_name" is the name of the last server to which the connection was
10745 sent, which might differ from the first one if there were connection errors
10746 and a redispatch occurred. Note that this server belongs to the backend
10747 which processed the request. If the request was aborted before reaching a
10748 server, "<NOSRV>" is indicated instead of a server name. If the request was
10749 intercepted by the stats subsystem, "<STATS>" is indicated instead.
10750
10751 - "Tq" is the total time in milliseconds spent waiting for the client to send
10752 a full HTTP request, not counting data. It can be "-1" if the connection
10753 was aborted before a complete request could be received. It should always
10754 be very small because a request generally fits in one single packet. Large
10755 times here generally indicate network trouble between the client and
10756 haproxy. See "Timers" below for more details.
10757
10758 - "Tw" is the total time in milliseconds spent waiting in the various queues.
10759 It can be "-1" if the connection was aborted before reaching the queue.
10760 See "Timers" below for more details.
10761
10762 - "Tc" is the total time in milliseconds spent waiting for the connection to
10763 establish to the final server, including retries. It can be "-1" if the
10764 request was aborted before a connection could be established. See "Timers"
10765 below for more details.
10766
10767 - "Tr" is the total time in milliseconds spent waiting for the server to send
10768 a full HTTP response, not counting data. It can be "-1" if the request was
10769 aborted before a complete response could be received. It generally matches
10770 the server's processing time for the request, though it may be altered by
10771 the amount of data sent by the client to the server. Large times here on
10772 "GET" requests generally indicate an overloaded server. See "Timers" below
10773 for more details.
10774
10775 - "Tt" is the total time in milliseconds elapsed between the accept and the
10776 last close. It covers all possible processings. There is one exception, if
10777 "option logasap" was specified, then the time counting stops at the moment
10778 the log is emitted. In this case, a '+' sign is prepended before the value,
10779 indicating that the final one will be larger. See "Timers" below for more
10780 details.
10781
10782 - "status_code" is the HTTP status code returned to the client. This status
10783 is generally set by the server, but it might also be set by haproxy when
10784 the server cannot be reached or when its response is blocked by haproxy.
10785
10786 - "bytes_read" is the total number of bytes transmitted to the client when
10787 the log is emitted. This does include HTTP headers. If "option logasap" is
10788 specified, the this value will be prefixed with a '+' sign indicating that
10789 the final one may be larger. Please note that this value is a 64-bit
10790 counter, so log analysis tools must be able to handle it without
10791 overflowing.
10792
10793 - "captured_request_cookie" is an optional "name=value" entry indicating that
10794 the client had this cookie in the request. The cookie name and its maximum
10795 length are defined by the "capture cookie" statement in the frontend
10796 configuration. The field is a single dash ('-') when the option is not
10797 set. Only one cookie may be captured, it is generally used to track session
10798 ID exchanges between a client and a server to detect session crossing
10799 between clients due to application bugs. For more details, please consult
10800 the section "Capturing HTTP headers and cookies" below.
10801
10802 - "captured_response_cookie" is an optional "name=value" entry indicating
10803 that the server has returned a cookie with its response. The cookie name
10804 and its maximum length are defined by the "capture cookie" statement in the
10805 frontend configuration. The field is a single dash ('-') when the option is
10806 not set. Only one cookie may be captured, it is generally used to track
10807 session ID exchanges between a client and a server to detect session
10808 crossing between clients due to application bugs. For more details, please
10809 consult the section "Capturing HTTP headers and cookies" below.
10810
10811 - "termination_state" is the condition the session was in when the session
10812 ended. This indicates the session state, which side caused the end of
10813 session to happen, for what reason (timeout, error, ...), just like in TCP
10814 logs, and information about persistence operations on cookies in the last
10815 two characters. The normal flags should begin with "--", indicating the
10816 session was closed by either end with no data remaining in buffers. See
10817 below "Session state at disconnection" for more details.
10818
10819 - "actconn" is the total number of concurrent connections on the process when
Jamie Gloudonaaa21002012-08-25 00:18:33 -040010820 the session was logged. It is useful to detect when some per-process system
Willy Tarreaucc6c8912009-02-22 10:53:55 +010010821 limits have been reached. For instance, if actconn is close to 512 or 1024
10822 when multiple connection errors occur, chances are high that the system
10823 limits the process to use a maximum of 1024 file descriptors and that all
Willy Tarreauc57f0e22009-05-10 13:12:33 +020010824 of them are used. See section 3 "Global parameters" to find how to tune the
Willy Tarreaucc6c8912009-02-22 10:53:55 +010010825 system.
10826
10827 - "feconn" is the total number of concurrent connections on the frontend when
10828 the session was logged. It is useful to estimate the amount of resource
10829 required to sustain high loads, and to detect when the frontend's "maxconn"
10830 has been reached. Most often when this value increases by huge jumps, it is
10831 because there is congestion on the backend servers, but sometimes it can be
10832 caused by a denial of service attack.
10833
10834 - "beconn" is the total number of concurrent connections handled by the
10835 backend when the session was logged. It includes the total number of
10836 concurrent connections active on servers as well as the number of
10837 connections pending in queues. It is useful to estimate the amount of
10838 additional servers needed to support high loads for a given application.
10839 Most often when this value increases by huge jumps, it is because there is
10840 congestion on the backend servers, but sometimes it can be caused by a
10841 denial of service attack.
10842
10843 - "srv_conn" is the total number of concurrent connections still active on
10844 the server when the session was logged. It can never exceed the server's
10845 configured "maxconn" parameter. If this value is very often close or equal
10846 to the server's "maxconn", it means that traffic regulation is involved a
10847 lot, meaning that either the server's maxconn value is too low, or that
10848 there aren't enough servers to process the load with an optimal response
10849 time. When only one of the server's "srv_conn" is high, it usually means
10850 that this server has some trouble causing the requests to take longer to be
10851 processed than on other servers.
10852
10853 - "retries" is the number of connection retries experienced by this session
10854 when trying to connect to the server. It must normally be zero, unless a
10855 server is being stopped at the same moment the connection was attempted.
10856 Frequent retries generally indicate either a network problem between
10857 haproxy and the server, or a misconfigured system backlog on the server
10858 preventing new connections from being queued. This field may optionally be
10859 prefixed with a '+' sign, indicating that the session has experienced a
10860 redispatch after the maximal retry count has been reached on the initial
10861 server. In this case, the server name appearing in the log is the one the
10862 connection was redispatched to, and not the first one, though both may
10863 sometimes be the same in case of hashing for instance. So as a general rule
10864 of thumb, when a '+' is present in front of the retry count, this count
10865 should not be attributed to the logged server.
10866
10867 - "srv_queue" is the total number of requests which were processed before
10868 this one in the server queue. It is zero when the request has not gone
10869 through the server queue. It makes it possible to estimate the approximate
10870 server's response time by dividing the time spent in queue by the number of
10871 requests in the queue. It is worth noting that if a session experiences a
10872 redispatch and passes through two server queues, their positions will be
10873 cumulated. A request should not pass through both the server queue and the
10874 backend queue unless a redispatch occurs.
10875
10876 - "backend_queue" is the total number of requests which were processed before
10877 this one in the backend's global queue. It is zero when the request has not
10878 gone through the global queue. It makes it possible to estimate the average
10879 queue length, which easily translates into a number of missing servers when
10880 divided by a server's "maxconn" parameter. It is worth noting that if a
10881 session experiences a redispatch, it may pass twice in the backend's queue,
10882 and then both positions will be cumulated. A request should not pass
10883 through both the server queue and the backend queue unless a redispatch
10884 occurs.
10885
10886 - "captured_request_headers" is a list of headers captured in the request due
10887 to the presence of the "capture request header" statement in the frontend.
10888 Multiple headers can be captured, they will be delimited by a vertical bar
10889 ('|'). When no capture is enabled, the braces do not appear, causing a
10890 shift of remaining fields. It is important to note that this field may
10891 contain spaces, and that using it requires a smarter log parser than when
10892 it's not used. Please consult the section "Capturing HTTP headers and
10893 cookies" below for more details.
10894
10895 - "captured_response_headers" is a list of headers captured in the response
10896 due to the presence of the "capture response header" statement in the
10897 frontend. Multiple headers can be captured, they will be delimited by a
10898 vertical bar ('|'). When no capture is enabled, the braces do not appear,
10899 causing a shift of remaining fields. It is important to note that this
10900 field may contain spaces, and that using it requires a smarter log parser
10901 than when it's not used. Please consult the section "Capturing HTTP headers
10902 and cookies" below for more details.
10903
10904 - "http_request" is the complete HTTP request line, including the method,
10905 request and HTTP version string. Non-printable characters are encoded (see
10906 below the section "Non-printable characters"). This is always the last
10907 field, and it is always delimited by quotes and is the only one which can
10908 contain quotes. If new fields are added to the log format, they will be
10909 added before this field. This field might be truncated if the request is
10910 huge and does not fit in the standard syslog buffer (1024 characters). This
10911 is the reason why this field must always remain the last one.
10912
10913
Cyril Bontédc4d9032012-04-08 21:57:39 +0200109148.2.4. Custom log format
10915------------------------
William Lallemand48940402012-01-30 16:47:22 +010010916
Willy Tarreau2beef582012-12-20 17:22:52 +010010917The directive log-format allows you to customize the logs in http mode and tcp
William Lallemandbddd4fd2012-02-27 11:23:10 +010010918mode. It takes a string as argument.
William Lallemand48940402012-01-30 16:47:22 +010010919
10920HAproxy understands some log format variables. % precedes log format variables.
10921Variables can take arguments using braces ('{}'), and multiple arguments are
10922separated by commas within the braces. Flags may be added or removed by
10923prefixing them with a '+' or '-' sign.
10924
10925Special variable "%o" may be used to propagate its flags to all other
10926variables on the same format string. This is particularly handy with quoted
10927string formats ("Q").
10928
Willy Tarreauc8368452012-12-21 00:09:23 +010010929If a variable is named between square brackets ('[' .. ']') then it is used
Willy Tarreau74ca5042013-06-11 23:12:07 +020010930as a pattern extraction rule (see section 7.3). This it useful to add some
Willy Tarreauc8368452012-12-21 00:09:23 +010010931less common information such as the client's SSL certificate's DN, or to log
10932the key that would be used to store an entry into a stick table.
10933
William Lallemand48940402012-01-30 16:47:22 +010010934Note: spaces must be escaped. A space character is considered as a separator.
10935HAproxy will automatically merge consecutive separators.
10936
10937Flags are :
10938 * Q: quote a string
Jamie Gloudonaaa21002012-08-25 00:18:33 -040010939 * X: hexadecimal representation (IPs, Ports, %Ts, %rt, %pid)
William Lallemand48940402012-01-30 16:47:22 +010010940
10941 Example:
10942
10943 log-format %T\ %t\ Some\ Text
10944 log-format %{+Q}o\ %t\ %s\ %{-Q}r
10945
10946At the moment, the default HTTP format is defined this way :
10947
Willy Tarreau2beef582012-12-20 17:22:52 +010010948 log-format %ci:%cp\ [%t]\ %ft\ %b/%s\ %Tq/%Tw/%Tc/%Tr/%Tt\ %ST\ %B\ %CC\ \
10949 %CS\ %tsc\ %ac/%fc/%bc/%sc/%rc\ %sq/%bq\ %hr\ %hs\ %{+Q}r
William Lallemand48940402012-01-30 16:47:22 +010010950
William Lallemandbddd4fd2012-02-27 11:23:10 +010010951the default CLF format is defined this way :
William Lallemand48940402012-01-30 16:47:22 +010010952
Willy Tarreau2beef582012-12-20 17:22:52 +010010953 log-format %{+Q}o\ %{-Q}ci\ -\ -\ [%T]\ %r\ %ST\ %B\ \"\"\ \"\"\ %cp\ \
Willy Tarreau773d65f2012-10-12 14:56:11 +020010954 %ms\ %ft\ %b\ %s\ \%Tq\ %Tw\ %Tc\ %Tr\ %Tt\ %tsc\ %ac\ %fc\ \
Willy Tarreau2beef582012-12-20 17:22:52 +010010955 %bc\ %sc\ %rc\ %sq\ %bq\ %CC\ %CS\ \%hrl\ %hsl
William Lallemand48940402012-01-30 16:47:22 +010010956
William Lallemandbddd4fd2012-02-27 11:23:10 +010010957and the default TCP format is defined this way :
10958
Willy Tarreau2beef582012-12-20 17:22:52 +010010959 log-format %ci:%cp\ [%t]\ %ft\ %b/%s\ %Tw/%Tc/%Tt\ %B\ %ts\ \
William Lallemandbddd4fd2012-02-27 11:23:10 +010010960 %ac/%fc/%bc/%sc/%rc\ %sq/%bq
10961
William Lallemand48940402012-01-30 16:47:22 +010010962Please refer to the table below for currently defined variables :
10963
William Lallemandbddd4fd2012-02-27 11:23:10 +010010964 +---+------+-----------------------------------------------+-------------+
Willy Tarreauffc3fcd2012-10-12 20:17:54 +020010965 | R | var | field name (8.2.2 and 8.2.3 for description) | type |
William Lallemandbddd4fd2012-02-27 11:23:10 +010010966 +---+------+-----------------------------------------------+-------------+
10967 | | %o | special variable, apply flags on all next var | |
10968 +---+------+-----------------------------------------------+-------------+
Willy Tarreau2beef582012-12-20 17:22:52 +010010969 | | %B | bytes_read (from server to client) | numeric |
10970 | H | %CC | captured_request_cookie | string |
10971 | H | %CS | captured_response_cookie | string |
William Lallemand5f232402012-04-05 18:02:55 +020010972 | | %H | hostname | string |
William Lallemanda73203e2012-03-12 12:48:57 +010010973 | | %ID | unique-id | string |
Willy Tarreau2beef582012-12-20 17:22:52 +010010974 | H | %ST | status_code | numeric |
William Lallemand5f232402012-04-05 18:02:55 +020010975 | | %T | gmt_date_time | date |
William Lallemandbddd4fd2012-02-27 11:23:10 +010010976 | | %Tc | Tc | numeric |
Yuxans Yao4e25b012012-10-19 10:36:09 +080010977 | | %Tl | local_date_time | date |
Willy Tarreauffc3fcd2012-10-12 20:17:54 +020010978 | H | %Tq | Tq | numeric |
10979 | H | %Tr | Tr | numeric |
William Lallemand5f232402012-04-05 18:02:55 +020010980 | | %Ts | timestamp | numeric |
William Lallemandbddd4fd2012-02-27 11:23:10 +010010981 | | %Tt | Tt | numeric |
10982 | | %Tw | Tw | numeric |
Willy Tarreau2beef582012-12-20 17:22:52 +010010983 | | %U | bytes_uploaded (from client to server) | numeric |
William Lallemandbddd4fd2012-02-27 11:23:10 +010010984 | | %ac | actconn | numeric |
10985 | | %b | backend_name | string |
Willy Tarreau2beef582012-12-20 17:22:52 +010010986 | | %bc | beconn (backend concurrent connections) | numeric |
10987 | | %bi | backend_source_ip (connecting address) | IP |
10988 | | %bp | backend_source_port (connecting address) | numeric |
William Lallemandbddd4fd2012-02-27 11:23:10 +010010989 | | %bq | backend_queue | numeric |
Willy Tarreau2beef582012-12-20 17:22:52 +010010990 | | %ci | client_ip (accepted address) | IP |
10991 | | %cp | client_port (accepted address) | numeric |
William Lallemandbddd4fd2012-02-27 11:23:10 +010010992 | | %f | frontend_name | string |
Willy Tarreau2beef582012-12-20 17:22:52 +010010993 | | %fc | feconn (frontend concurrent connections) | numeric |
10994 | | %fi | frontend_ip (accepting address) | IP |
10995 | | %fp | frontend_port (accepting address) | numeric |
Willy Tarreau773d65f2012-10-12 14:56:11 +020010996 | | %ft | frontend_name_transport ('~' suffix for SSL) | string |
Willy Tarreauffc3fcd2012-10-12 20:17:54 +020010997 | H | %hr | captured_request_headers default style | string |
10998 | H | %hrl | captured_request_headers CLF style | string list |
10999 | H | %hs | captured_response_headers default style | string |
11000 | H | %hsl | captured_response_headers CLF style | string list |
William Lallemandbddd4fd2012-02-27 11:23:10 +010011001 | | %ms | accept date milliseconds | numeric |
William Lallemand5f232402012-04-05 18:02:55 +020011002 | | %pid | PID | numeric |
Willy Tarreauffc3fcd2012-10-12 20:17:54 +020011003 | H | %r | http_request | string |
William Lallemandbddd4fd2012-02-27 11:23:10 +010011004 | | %rc | retries | numeric |
Willy Tarreau2beef582012-12-20 17:22:52 +010011005 | H | %rt | http_request_counter | numeric |
William Lallemandbddd4fd2012-02-27 11:23:10 +010011006 | | %s | server_name | string |
Willy Tarreau2beef582012-12-20 17:22:52 +010011007 | | %sc | srv_conn (server concurrent connections) | numeric |
11008 | | %si | server_IP (target address) | IP |
11009 | | %sp | server_port (target address) | numeric |
William Lallemandbddd4fd2012-02-27 11:23:10 +010011010 | | %sq | srv_queue | numeric |
Willy Tarreauffc3fcd2012-10-12 20:17:54 +020011011 | S | %sslc| ssl_ciphers (ex: AES-SHA) | string |
11012 | S | %sslv| ssl_version (ex: TLSv1) | string |
Willy Tarreau2beef582012-12-20 17:22:52 +010011013 | | %t | date_time (with millisecond resolution) | date |
William Lallemandbddd4fd2012-02-27 11:23:10 +010011014 | | %ts | termination_state | string |
Willy Tarreauffc3fcd2012-10-12 20:17:54 +020011015 | H | %tsc | termination_state with cookie status | string |
William Lallemandbddd4fd2012-02-27 11:23:10 +010011016 +---+------+-----------------------------------------------+-------------+
William Lallemand48940402012-01-30 16:47:22 +010011017
Willy Tarreauffc3fcd2012-10-12 20:17:54 +020011018 R = Restrictions : H = mode http only ; S = SSL only
William Lallemand48940402012-01-30 16:47:22 +010011019
Willy Tarreau5f51e1a2012-12-03 18:40:10 +010011020
110218.2.5. Error log format
11022-----------------------
11023
11024When an incoming connection fails due to an SSL handshake or an invalid PROXY
11025protocol header, haproxy will log the event using a shorter, fixed line format.
11026By default, logs are emitted at the LOG_INFO level, unless the option
11027"log-separate-errors" is set in the backend, in which case the LOG_ERR level
11028will be used. Connections on which no data are exchanged (eg: probes) are not
11029logged if the "dontlognull" option is set.
11030
11031The format looks like this :
11032
11033 >>> Dec 3 18:27:14 localhost \
11034 haproxy[6103]: 127.0.0.1:56059 [03/Dec/2012:17:35:10.380] frt/f1: \
11035 Connection error during SSL handshake
11036
11037 Field Format Extract from the example above
11038 1 process_name '[' pid ']:' haproxy[6103]:
11039 2 client_ip ':' client_port 127.0.0.1:56059
11040 3 '[' accept_date ']' [03/Dec/2012:17:35:10.380]
11041 4 frontend_name "/" bind_name ":" frt/f1:
11042 5 message Connection error during SSL handshake
11043
11044These fields just provide minimal information to help debugging connection
11045failures.
11046
11047
Willy Tarreauc57f0e22009-05-10 13:12:33 +0200110488.3. Advanced logging options
11049-----------------------------
Willy Tarreaucc6c8912009-02-22 10:53:55 +010011050
11051Some advanced logging options are often looked for but are not easy to find out
11052just by looking at the various options. Here is an entry point for the few
11053options which can enable better logging. Please refer to the keywords reference
11054for more information about their usage.
11055
11056
Willy Tarreauc57f0e22009-05-10 13:12:33 +0200110578.3.1. Disabling logging of external tests
11058------------------------------------------
Willy Tarreaucc6c8912009-02-22 10:53:55 +010011059
11060It is quite common to have some monitoring tools perform health checks on
11061haproxy. Sometimes it will be a layer 3 load-balancer such as LVS or any
11062commercial load-balancer, and sometimes it will simply be a more complete
11063monitoring system such as Nagios. When the tests are very frequent, users often
11064ask how to disable logging for those checks. There are three possibilities :
11065
11066 - if connections come from everywhere and are just TCP probes, it is often
11067 desired to simply disable logging of connections without data exchange, by
11068 setting "option dontlognull" in the frontend. It also disables logging of
11069 port scans, which may or may not be desired.
11070
11071 - if the connection come from a known source network, use "monitor-net" to
11072 declare this network as monitoring only. Any host in this network will then
11073 only be able to perform health checks, and their requests will not be
11074 logged. This is generally appropriate to designate a list of equipments
11075 such as other load-balancers.
11076
11077 - if the tests are performed on a known URI, use "monitor-uri" to declare
11078 this URI as dedicated to monitoring. Any host sending this request will
11079 only get the result of a health-check, and the request will not be logged.
11080
11081
Willy Tarreauc57f0e22009-05-10 13:12:33 +0200110828.3.2. Logging before waiting for the session to terminate
11083----------------------------------------------------------
Willy Tarreaucc6c8912009-02-22 10:53:55 +010011084
11085The problem with logging at end of connection is that you have no clue about
11086what is happening during very long sessions, such as remote terminal sessions
11087or large file downloads. This problem can be worked around by specifying
11088"option logasap" in the frontend. Haproxy will then log as soon as possible,
11089just before data transfer begins. This means that in case of TCP, it will still
11090log the connection status to the server, and in case of HTTP, it will log just
11091after processing the server headers. In this case, the number of bytes reported
11092is the number of header bytes sent to the client. In order to avoid confusion
11093with normal logs, the total time field and the number of bytes are prefixed
11094with a '+' sign which means that real numbers are certainly larger.
11095
11096
Willy Tarreauc57f0e22009-05-10 13:12:33 +0200110978.3.3. Raising log level upon errors
11098------------------------------------
Willy Tarreauc9bd0cc2009-05-10 11:57:02 +020011099
11100Sometimes it is more convenient to separate normal traffic from errors logs,
11101for instance in order to ease error monitoring from log files. When the option
11102"log-separate-errors" is used, connections which experience errors, timeouts,
11103retries, redispatches or HTTP status codes 5xx will see their syslog level
11104raised from "info" to "err". This will help a syslog daemon store the log in
11105a separate file. It is very important to keep the errors in the normal traffic
11106file too, so that log ordering is not altered. You should also be careful if
11107you already have configured your syslog daemon to store all logs higher than
11108"notice" in an "admin" file, because the "err" level is higher than "notice".
11109
11110
Willy Tarreauc57f0e22009-05-10 13:12:33 +0200111118.3.4. Disabling logging of successful connections
11112--------------------------------------------------
Willy Tarreauc9bd0cc2009-05-10 11:57:02 +020011113
11114Although this may sound strange at first, some large sites have to deal with
11115multiple thousands of logs per second and are experiencing difficulties keeping
11116them intact for a long time or detecting errors within them. If the option
11117"dontlog-normal" is set on the frontend, all normal connections will not be
11118logged. In this regard, a normal connection is defined as one without any
11119error, timeout, retry nor redispatch. In HTTP, the status code is checked too,
11120and a response with a status 5xx is not considered normal and will be logged
11121too. Of course, doing is is really discouraged as it will remove most of the
11122useful information from the logs. Do this only if you have no other
11123alternative.
11124
11125
Willy Tarreauc57f0e22009-05-10 13:12:33 +0200111268.4. Timing events
11127------------------
Willy Tarreaucc6c8912009-02-22 10:53:55 +010011128
11129Timers provide a great help in troubleshooting network problems. All values are
11130reported in milliseconds (ms). These timers should be used in conjunction with
11131the session termination flags. In TCP mode with "option tcplog" set on the
11132frontend, 3 control points are reported under the form "Tw/Tc/Tt", and in HTTP
11133mode, 5 control points are reported under the form "Tq/Tw/Tc/Tr/Tt" :
11134
11135 - Tq: total time to get the client request (HTTP mode only). It's the time
11136 elapsed between the moment the client connection was accepted and the
11137 moment the proxy received the last HTTP header. The value "-1" indicates
11138 that the end of headers (empty line) has never been seen. This happens when
11139 the client closes prematurely or times out.
11140
11141 - Tw: total time spent in the queues waiting for a connection slot. It
11142 accounts for backend queue as well as the server queues, and depends on the
11143 queue size, and the time needed for the server to complete previous
11144 requests. The value "-1" means that the request was killed before reaching
11145 the queue, which is generally what happens with invalid or denied requests.
11146
11147 - Tc: total time to establish the TCP connection to the server. It's the time
11148 elapsed between the moment the proxy sent the connection request, and the
11149 moment it was acknowledged by the server, or between the TCP SYN packet and
11150 the matching SYN/ACK packet in return. The value "-1" means that the
11151 connection never established.
11152
11153 - Tr: server response time (HTTP mode only). It's the time elapsed between
11154 the moment the TCP connection was established to the server and the moment
11155 the server sent its complete response headers. It purely shows its request
11156 processing time, without the network overhead due to the data transmission.
11157 It is worth noting that when the client has data to send to the server, for
11158 instance during a POST request, the time already runs, and this can distort
11159 apparent response time. For this reason, it's generally wise not to trust
11160 too much this field for POST requests initiated from clients behind an
11161 untrusted network. A value of "-1" here means that the last the response
11162 header (empty line) was never seen, most likely because the server timeout
11163 stroke before the server managed to process the request.
11164
11165 - Tt: total session duration time, between the moment the proxy accepted it
11166 and the moment both ends were closed. The exception is when the "logasap"
11167 option is specified. In this case, it only equals (Tq+Tw+Tc+Tr), and is
11168 prefixed with a '+' sign. From this field, we can deduce "Td", the data
11169 transmission time, by substracting other timers when valid :
11170
11171 Td = Tt - (Tq + Tw + Tc + Tr)
11172
11173 Timers with "-1" values have to be excluded from this equation. In TCP
11174 mode, "Tq" and "Tr" have to be excluded too. Note that "Tt" can never be
11175 negative.
11176
11177These timers provide precious indications on trouble causes. Since the TCP
11178protocol defines retransmit delays of 3, 6, 12... seconds, we know for sure
11179that timers close to multiples of 3s are nearly always related to lost packets
Krzysztof Piotr Oledzkif8645332009-12-13 21:55:50 +010011180due to network problems (wires, negotiation, congestion). Moreover, if "Tt" is
Willy Tarreaucc6c8912009-02-22 10:53:55 +010011181close to a timeout value specified in the configuration, it often means that a
11182session has been aborted on timeout.
11183
11184Most common cases :
11185
11186 - If "Tq" is close to 3000, a packet has probably been lost between the
11187 client and the proxy. This is very rare on local networks but might happen
11188 when clients are on far remote networks and send large requests. It may
11189 happen that values larger than usual appear here without any network cause.
11190 Sometimes, during an attack or just after a resource starvation has ended,
11191 haproxy may accept thousands of connections in a few milliseconds. The time
11192 spent accepting these connections will inevitably slightly delay processing
11193 of other connections, and it can happen that request times in the order of
11194 a few tens of milliseconds are measured after a few thousands of new
Patrick Mezard105faca2010-06-12 17:02:46 +020011195 connections have been accepted at once. Setting "option http-server-close"
11196 may display larger request times since "Tq" also measures the time spent
11197 waiting for additional requests.
Willy Tarreaucc6c8912009-02-22 10:53:55 +010011198
11199 - If "Tc" is close to 3000, a packet has probably been lost between the
11200 server and the proxy during the server connection phase. This value should
11201 always be very low, such as 1 ms on local networks and less than a few tens
11202 of ms on remote networks.
11203
Willy Tarreau55165fe2009-05-10 12:02:55 +020011204 - If "Tr" is nearly always lower than 3000 except some rare values which seem
11205 to be the average majored by 3000, there are probably some packets lost
11206 between the proxy and the server.
Willy Tarreaucc6c8912009-02-22 10:53:55 +010011207
11208 - If "Tt" is large even for small byte counts, it generally is because
11209 neither the client nor the server decides to close the connection, for
11210 instance because both have agreed on a keep-alive connection mode. In order
11211 to solve this issue, it will be needed to specify "option httpclose" on
11212 either the frontend or the backend. If the problem persists, it means that
11213 the server ignores the "close" connection mode and expects the client to
11214 close. Then it will be required to use "option forceclose". Having the
11215 smallest possible 'Tt' is important when connection regulation is used with
11216 the "maxconn" option on the servers, since no new connection will be sent
11217 to the server until another one is released.
11218
11219Other noticeable HTTP log cases ('xx' means any value to be ignored) :
11220
11221 Tq/Tw/Tc/Tr/+Tt The "option logasap" is present on the frontend and the log
11222 was emitted before the data phase. All the timers are valid
11223 except "Tt" which is shorter than reality.
11224
11225 -1/xx/xx/xx/Tt The client was not able to send a complete request in time
11226 or it aborted too early. Check the session termination flags
11227 then "timeout http-request" and "timeout client" settings.
11228
11229 Tq/-1/xx/xx/Tt It was not possible to process the request, maybe because
11230 servers were out of order, because the request was invalid
11231 or forbidden by ACL rules. Check the session termination
11232 flags.
11233
11234 Tq/Tw/-1/xx/Tt The connection could not establish on the server. Either it
11235 actively refused it or it timed out after Tt-(Tq+Tw) ms.
11236 Check the session termination flags, then check the
11237 "timeout connect" setting. Note that the tarpit action might
11238 return similar-looking patterns, with "Tw" equal to the time
11239 the client connection was maintained open.
11240
11241 Tq/Tw/Tc/-1/Tt The server has accepted the connection but did not return
11242 a complete response in time, or it closed its connexion
11243 unexpectedly after Tt-(Tq+Tw+Tc) ms. Check the session
11244 termination flags, then check the "timeout server" setting.
11245
11246
Willy Tarreauc57f0e22009-05-10 13:12:33 +0200112478.5. Session state at disconnection
11248-----------------------------------
Willy Tarreaucc6c8912009-02-22 10:53:55 +010011249
11250TCP and HTTP logs provide a session termination indicator in the
11251"termination_state" field, just before the number of active connections. It is
112522-characters long in TCP mode, and is extended to 4 characters in HTTP mode,
11253each of which has a special meaning :
11254
11255 - On the first character, a code reporting the first event which caused the
11256 session to terminate :
11257
11258 C : the TCP session was unexpectedly aborted by the client.
11259
11260 S : the TCP session was unexpectedly aborted by the server, or the
11261 server explicitly refused it.
11262
11263 P : the session was prematurely aborted by the proxy, because of a
11264 connection limit enforcement, because a DENY filter was matched,
11265 because of a security check which detected and blocked a dangerous
11266 error in server response which might have caused information leak
Willy Tarreau570f2212013-06-10 16:42:09 +020011267 (eg: cacheable cookie).
11268
11269 L : the session was locally processed by haproxy and was not passed to
11270 a server. This is what happens for stats and redirects.
Willy Tarreaucc6c8912009-02-22 10:53:55 +010011271
11272 R : a resource on the proxy has been exhausted (memory, sockets, source
11273 ports, ...). Usually, this appears during the connection phase, and
11274 system logs should contain a copy of the precise error. If this
11275 happens, it must be considered as a very serious anomaly which
11276 should be fixed as soon as possible by any means.
11277
11278 I : an internal error was identified by the proxy during a self-check.
11279 This should NEVER happen, and you are encouraged to report any log
11280 containing this, because this would almost certainly be a bug. It
11281 would be wise to preventively restart the process after such an
11282 event too, in case it would be caused by memory corruption.
11283
Simon Horman752dc4a2011-06-21 14:34:59 +090011284 D : the session was killed by haproxy because the server was detected
11285 as down and was configured to kill all connections when going down.
11286
Justin Karnegeseb2c24a2012-05-24 15:28:52 -070011287 U : the session was killed by haproxy on this backup server because an
11288 active server was detected as up and was configured to kill all
11289 backup connections when going up.
11290
Willy Tarreaua2a64e92011-09-07 23:01:56 +020011291 K : the session was actively killed by an admin operating on haproxy.
11292
Willy Tarreaucc6c8912009-02-22 10:53:55 +010011293 c : the client-side timeout expired while waiting for the client to
11294 send or receive data.
11295
11296 s : the server-side timeout expired while waiting for the server to
11297 send or receive data.
11298
11299 - : normal session completion, both the client and the server closed
11300 with nothing left in the buffers.
11301
11302 - on the second character, the TCP or HTTP session state when it was closed :
11303
Willy Tarreauf7b30a92010-12-06 22:59:17 +010011304 R : the proxy was waiting for a complete, valid REQUEST from the client
Willy Tarreaucc6c8912009-02-22 10:53:55 +010011305 (HTTP mode only). Nothing was sent to any server.
11306
11307 Q : the proxy was waiting in the QUEUE for a connection slot. This can
11308 only happen when servers have a 'maxconn' parameter set. It can
11309 also happen in the global queue after a redispatch consecutive to
11310 a failed attempt to connect to a dying server. If no redispatch is
11311 reported, then no connection attempt was made to any server.
11312
11313 C : the proxy was waiting for the CONNECTION to establish on the
11314 server. The server might at most have noticed a connection attempt.
11315
11316 H : the proxy was waiting for complete, valid response HEADERS from the
11317 server (HTTP only).
11318
11319 D : the session was in the DATA phase.
11320
11321 L : the proxy was still transmitting LAST data to the client while the
11322 server had already finished. This one is very rare as it can only
11323 happen when the client dies while receiving the last packets.
11324
11325 T : the request was tarpitted. It has been held open with the client
11326 during the whole "timeout tarpit" duration or until the client
11327 closed, both of which will be reported in the "Tw" timer.
11328
11329 - : normal session completion after end of data transfer.
11330
11331 - the third character tells whether the persistence cookie was provided by
11332 the client (only in HTTP mode) :
11333
11334 N : the client provided NO cookie. This is usually the case for new
11335 visitors, so counting the number of occurrences of this flag in the
11336 logs generally indicate a valid trend for the site frequentation.
11337
11338 I : the client provided an INVALID cookie matching no known server.
11339 This might be caused by a recent configuration change, mixed
Cyril Bontéa8e7bbc2010-04-25 22:29:29 +020011340 cookies between HTTP/HTTPS sites, persistence conditionally
11341 ignored, or an attack.
Willy Tarreaucc6c8912009-02-22 10:53:55 +010011342
11343 D : the client provided a cookie designating a server which was DOWN,
11344 so either "option persist" was used and the client was sent to
11345 this server, or it was not set and the client was redispatched to
11346 another server.
11347
Willy Tarreau996a92c2010-10-13 19:30:47 +020011348 V : the client provided a VALID cookie, and was sent to the associated
Willy Tarreaucc6c8912009-02-22 10:53:55 +010011349 server.
11350
Willy Tarreau996a92c2010-10-13 19:30:47 +020011351 E : the client provided a valid cookie, but with a last date which was
11352 older than what is allowed by the "maxidle" cookie parameter, so
11353 the cookie is consider EXPIRED and is ignored. The request will be
11354 redispatched just as if there was no cookie.
11355
11356 O : the client provided a valid cookie, but with a first date which was
11357 older than what is allowed by the "maxlife" cookie parameter, so
11358 the cookie is consider too OLD and is ignored. The request will be
11359 redispatched just as if there was no cookie.
11360
Willy Tarreauc89ccb62012-04-05 21:18:22 +020011361 U : a cookie was present but was not used to select the server because
11362 some other server selection mechanism was used instead (typically a
11363 "use-server" rule).
11364
Willy Tarreaucc6c8912009-02-22 10:53:55 +010011365 - : does not apply (no cookie set in configuration).
11366
11367 - the last character reports what operations were performed on the persistence
11368 cookie returned by the server (only in HTTP mode) :
11369
11370 N : NO cookie was provided by the server, and none was inserted either.
11371
11372 I : no cookie was provided by the server, and the proxy INSERTED one.
11373 Note that in "cookie insert" mode, if the server provides a cookie,
11374 it will still be overwritten and reported as "I" here.
11375
Willy Tarreau996a92c2010-10-13 19:30:47 +020011376 U : the proxy UPDATED the last date in the cookie that was presented by
11377 the client. This can only happen in insert mode with "maxidle". It
11378 happens everytime there is activity at a different date than the
11379 date indicated in the cookie. If any other change happens, such as
11380 a redispatch, then the cookie will be marked as inserted instead.
11381
Willy Tarreaucc6c8912009-02-22 10:53:55 +010011382 P : a cookie was PROVIDED by the server and transmitted as-is.
11383
11384 R : the cookie provided by the server was REWRITTEN by the proxy, which
11385 happens in "cookie rewrite" or "cookie prefix" modes.
11386
11387 D : the cookie provided by the server was DELETED by the proxy.
11388
11389 - : does not apply (no cookie set in configuration).
11390
Willy Tarreau996a92c2010-10-13 19:30:47 +020011391The combination of the two first flags gives a lot of information about what
11392was happening when the session terminated, and why it did terminate. It can be
Willy Tarreaucc6c8912009-02-22 10:53:55 +010011393helpful to detect server saturation, network troubles, local system resource
11394starvation, attacks, etc...
11395
11396The most common termination flags combinations are indicated below. They are
11397alphabetically sorted, with the lowercase set just after the upper case for
11398easier finding and understanding.
11399
11400 Flags Reason
11401
11402 -- Normal termination.
11403
11404 CC The client aborted before the connection could be established to the
11405 server. This can happen when haproxy tries to connect to a recently
11406 dead (or unchecked) server, and the client aborts while haproxy is
11407 waiting for the server to respond or for "timeout connect" to expire.
11408
11409 CD The client unexpectedly aborted during data transfer. This can be
11410 caused by a browser crash, by an intermediate equipment between the
11411 client and haproxy which decided to actively break the connection,
11412 by network routing issues between the client and haproxy, or by a
11413 keep-alive session between the server and the client terminated first
11414 by the client.
Willy Tarreaud72758d2010-01-12 10:42:19 +010011415
Willy Tarreaucc6c8912009-02-22 10:53:55 +010011416 cD The client did not send nor acknowledge any data for as long as the
11417 "timeout client" delay. This is often caused by network failures on
Cyril Bontédc4d9032012-04-08 21:57:39 +020011418 the client side, or the client simply leaving the net uncleanly.
Willy Tarreaucc6c8912009-02-22 10:53:55 +010011419
11420 CH The client aborted while waiting for the server to start responding.
11421 It might be the server taking too long to respond or the client
11422 clicking the 'Stop' button too fast.
11423
11424 cH The "timeout client" stroke while waiting for client data during a
11425 POST request. This is sometimes caused by too large TCP MSS values
11426 for PPPoE networks which cannot transport full-sized packets. It can
11427 also happen when client timeout is smaller than server timeout and
11428 the server takes too long to respond.
11429
11430 CQ The client aborted while its session was queued, waiting for a server
11431 with enough empty slots to accept it. It might be that either all the
11432 servers were saturated or that the assigned server was taking too
11433 long a time to respond.
11434
11435 CR The client aborted before sending a full HTTP request. Most likely
11436 the request was typed by hand using a telnet client, and aborted
11437 too early. The HTTP status code is likely a 400 here. Sometimes this
11438 might also be caused by an IDS killing the connection between haproxy
11439 and the client.
11440
11441 cR The "timeout http-request" stroke before the client sent a full HTTP
11442 request. This is sometimes caused by too large TCP MSS values on the
11443 client side for PPPoE networks which cannot transport full-sized
11444 packets, or by clients sending requests by hand and not typing fast
11445 enough, or forgetting to enter the empty line at the end of the
11446 request. The HTTP status code is likely a 408 here.
11447
11448 CT The client aborted while its session was tarpitted. It is important to
11449 check if this happens on valid requests, in order to be sure that no
Willy Tarreau55165fe2009-05-10 12:02:55 +020011450 wrong tarpit rules have been written. If a lot of them happen, it
11451 might make sense to lower the "timeout tarpit" value to something
11452 closer to the average reported "Tw" timer, in order not to consume
11453 resources for just a few attackers.
Willy Tarreaucc6c8912009-02-22 10:53:55 +010011454
Willy Tarreau570f2212013-06-10 16:42:09 +020011455 LR The request was intercepted and locally handled by haproxy. Generally
11456 it means that this was a redirect or a stats request.
11457
Krzysztof Piotr Oledzkif8645332009-12-13 21:55:50 +010011458 SC The server or an equipment between it and haproxy explicitly refused
Willy Tarreaucc6c8912009-02-22 10:53:55 +010011459 the TCP connection (the proxy received a TCP RST or an ICMP message
11460 in return). Under some circumstances, it can also be the network
11461 stack telling the proxy that the server is unreachable (eg: no route,
11462 or no ARP response on local network). When this happens in HTTP mode,
11463 the status code is likely a 502 or 503 here.
11464
11465 sC The "timeout connect" stroke before a connection to the server could
11466 complete. When this happens in HTTP mode, the status code is likely a
11467 503 or 504 here.
11468
11469 SD The connection to the server died with an error during the data
11470 transfer. This usually means that haproxy has received an RST from
11471 the server or an ICMP message from an intermediate equipment while
11472 exchanging data with the server. This can be caused by a server crash
11473 or by a network issue on an intermediate equipment.
11474
11475 sD The server did not send nor acknowledge any data for as long as the
11476 "timeout server" setting during the data phase. This is often caused
Krzysztof Piotr Oledzkif8645332009-12-13 21:55:50 +010011477 by too short timeouts on L4 equipments before the server (firewalls,
Willy Tarreaucc6c8912009-02-22 10:53:55 +010011478 load-balancers, ...), as well as keep-alive sessions maintained
11479 between the client and the server expiring first on haproxy.
11480
11481 SH The server aborted before sending its full HTTP response headers, or
11482 it crashed while processing the request. Since a server aborting at
11483 this moment is very rare, it would be wise to inspect its logs to
11484 control whether it crashed and why. The logged request may indicate a
11485 small set of faulty requests, demonstrating bugs in the application.
11486 Sometimes this might also be caused by an IDS killing the connection
11487 between haproxy and the server.
11488
11489 sH The "timeout server" stroke before the server could return its
11490 response headers. This is the most common anomaly, indicating too
11491 long transactions, probably caused by server or database saturation.
11492 The immediate workaround consists in increasing the "timeout server"
11493 setting, but it is important to keep in mind that the user experience
11494 will suffer from these long response times. The only long term
11495 solution is to fix the application.
11496
11497 sQ The session spent too much time in queue and has been expired. See
11498 the "timeout queue" and "timeout connect" settings to find out how to
11499 fix this if it happens too often. If it often happens massively in
11500 short periods, it may indicate general problems on the affected
11501 servers due to I/O or database congestion, or saturation caused by
11502 external attacks.
11503
11504 PC The proxy refused to establish a connection to the server because the
11505 process' socket limit has been reached while attempting to connect.
Cyril Bontédc4d9032012-04-08 21:57:39 +020011506 The global "maxconn" parameter may be increased in the configuration
Willy Tarreaucc6c8912009-02-22 10:53:55 +010011507 so that it does not happen anymore. This status is very rare and
11508 might happen when the global "ulimit-n" parameter is forced by hand.
11509
Willy Tarreaued2fd2d2010-12-29 11:23:27 +010011510 PD The proxy blocked an incorrectly formatted chunked encoded message in
11511 a request or a response, after the server has emitted its headers. In
11512 most cases, this will indicate an invalid message from the server to
Willy Tarreauf3a3e132013-08-31 08:16:26 +020011513 the client. Haproxy supports chunk sizes of up to 2GB - 1 (2147483647
11514 bytes). Any larger size will be considered as an error.
Willy Tarreaued2fd2d2010-12-29 11:23:27 +010011515
Willy Tarreaucc6c8912009-02-22 10:53:55 +010011516 PH The proxy blocked the server's response, because it was invalid,
11517 incomplete, dangerous (cache control), or matched a security filter.
11518 In any case, an HTTP 502 error is sent to the client. One possible
11519 cause for this error is an invalid syntax in an HTTP header name
Willy Tarreaued2fd2d2010-12-29 11:23:27 +010011520 containing unauthorized characters. It is also possible but quite
11521 rare, that the proxy blocked a chunked-encoding request from the
11522 client due to an invalid syntax, before the server responded. In this
11523 case, an HTTP 400 error is sent to the client and reported in the
11524 logs.
Willy Tarreaucc6c8912009-02-22 10:53:55 +010011525
11526 PR The proxy blocked the client's HTTP request, either because of an
11527 invalid HTTP syntax, in which case it returned an HTTP 400 error to
11528 the client, or because a deny filter matched, in which case it
11529 returned an HTTP 403 error.
11530
11531 PT The proxy blocked the client's request and has tarpitted its
11532 connection before returning it a 500 server error. Nothing was sent
11533 to the server. The connection was maintained open for as long as
11534 reported by the "Tw" timer field.
11535
11536 RC A local resource has been exhausted (memory, sockets, source ports)
11537 preventing the connection to the server from establishing. The error
11538 logs will tell precisely what was missing. This is very rare and can
11539 only be solved by proper system tuning.
11540
Willy Tarreau996a92c2010-10-13 19:30:47 +020011541The combination of the two last flags gives a lot of information about how
11542persistence was handled by the client, the server and by haproxy. This is very
11543important to troubleshoot disconnections, when users complain they have to
11544re-authenticate. The commonly encountered flags are :
11545
11546 -- Persistence cookie is not enabled.
11547
11548 NN No cookie was provided by the client, none was inserted in the
11549 response. For instance, this can be in insert mode with "postonly"
11550 set on a GET request.
11551
11552 II A cookie designating an invalid server was provided by the client,
11553 a valid one was inserted in the response. This typically happens when
Jamie Gloudonaaa21002012-08-25 00:18:33 -040011554 a "server" entry is removed from the configuration, since its cookie
Willy Tarreau996a92c2010-10-13 19:30:47 +020011555 value can be presented by a client when no other server knows it.
11556
11557 NI No cookie was provided by the client, one was inserted in the
11558 response. This typically happens for first requests from every user
11559 in "insert" mode, which makes it an easy way to count real users.
11560
11561 VN A cookie was provided by the client, none was inserted in the
11562 response. This happens for most responses for which the client has
11563 already got a cookie.
11564
11565 VU A cookie was provided by the client, with a last visit date which is
11566 not completely up-to-date, so an updated cookie was provided in
11567 response. This can also happen if there was no date at all, or if
11568 there was a date but the "maxidle" parameter was not set, so that the
11569 cookie can be switched to unlimited time.
11570
11571 EI A cookie was provided by the client, with a last visit date which is
11572 too old for the "maxidle" parameter, so the cookie was ignored and a
11573 new cookie was inserted in the response.
11574
11575 OI A cookie was provided by the client, with a first visit date which is
11576 too old for the "maxlife" parameter, so the cookie was ignored and a
11577 new cookie was inserted in the response.
11578
11579 DI The server designated by the cookie was down, a new server was
11580 selected and a new cookie was emitted in the response.
11581
11582 VI The server designated by the cookie was not marked dead but could not
11583 be reached. A redispatch happened and selected another one, which was
11584 then advertised in the response.
11585
Willy Tarreaucc6c8912009-02-22 10:53:55 +010011586
Willy Tarreauc57f0e22009-05-10 13:12:33 +0200115878.6. Non-printable characters
11588-----------------------------
Willy Tarreaucc6c8912009-02-22 10:53:55 +010011589
11590In order not to cause trouble to log analysis tools or terminals during log
11591consulting, non-printable characters are not sent as-is into log files, but are
11592converted to the two-digits hexadecimal representation of their ASCII code,
11593prefixed by the character '#'. The only characters that can be logged without
11594being escaped are comprised between 32 and 126 (inclusive). Obviously, the
11595escape character '#' itself is also encoded to avoid any ambiguity ("#23"). It
11596is the same for the character '"' which becomes "#22", as well as '{', '|' and
11597'}' when logging headers.
11598
11599Note that the space character (' ') is not encoded in headers, which can cause
11600issues for tools relying on space count to locate fields. A typical header
11601containing spaces is "User-Agent".
11602
11603Last, it has been observed that some syslog daemons such as syslog-ng escape
11604the quote ('"') with a backslash ('\'). The reverse operation can safely be
11605performed since no quote may appear anywhere else in the logs.
11606
11607
Willy Tarreauc57f0e22009-05-10 13:12:33 +0200116088.7. Capturing HTTP cookies
11609---------------------------
Willy Tarreaucc6c8912009-02-22 10:53:55 +010011610
11611Cookie capture simplifies the tracking a complete user session. This can be
11612achieved using the "capture cookie" statement in the frontend. Please refer to
Willy Tarreauc57f0e22009-05-10 13:12:33 +020011613section 4.2 for more details. Only one cookie can be captured, and the same
Willy Tarreaucc6c8912009-02-22 10:53:55 +010011614cookie will simultaneously be checked in the request ("Cookie:" header) and in
11615the response ("Set-Cookie:" header). The respective values will be reported in
11616the HTTP logs at the "captured_request_cookie" and "captured_response_cookie"
Willy Tarreauc57f0e22009-05-10 13:12:33 +020011617locations (see section 8.2.3 about HTTP log format). When either cookie is
Willy Tarreaucc6c8912009-02-22 10:53:55 +010011618not seen, a dash ('-') replaces the value. This way, it's easy to detect when a
11619user switches to a new session for example, because the server will reassign it
11620a new cookie. It is also possible to detect if a server unexpectedly sets a
11621wrong cookie to a client, leading to session crossing.
11622
11623 Examples :
11624 # capture the first cookie whose name starts with "ASPSESSION"
11625 capture cookie ASPSESSION len 32
11626
11627 # capture the first cookie whose name is exactly "vgnvisitor"
11628 capture cookie vgnvisitor= len 32
11629
11630
Willy Tarreauc57f0e22009-05-10 13:12:33 +0200116318.8. Capturing HTTP headers
11632---------------------------
Willy Tarreaucc6c8912009-02-22 10:53:55 +010011633
11634Header captures are useful to track unique request identifiers set by an upper
11635proxy, virtual host names, user-agents, POST content-length, referrers, etc. In
11636the response, one can search for information about the response length, how the
11637server asked the cache to behave, or an object location during a redirection.
11638
11639Header captures are performed using the "capture request header" and "capture
11640response header" statements in the frontend. Please consult their definition in
Willy Tarreauc57f0e22009-05-10 13:12:33 +020011641section 4.2 for more details.
Willy Tarreaucc6c8912009-02-22 10:53:55 +010011642
11643It is possible to include both request headers and response headers at the same
Krzysztof Piotr Oledzkif8645332009-12-13 21:55:50 +010011644time. Non-existent headers are logged as empty strings, and if one header
11645appears more than once, only its last occurrence will be logged. Request headers
Willy Tarreaucc6c8912009-02-22 10:53:55 +010011646are grouped within braces '{' and '}' in the same order as they were declared,
11647and delimited with a vertical bar '|' without any space. Response headers
11648follow the same representation, but are displayed after a space following the
11649request headers block. These blocks are displayed just before the HTTP request
11650in the logs.
11651
11652 Example :
11653 # This instance chains to the outgoing proxy
11654 listen proxy-out
11655 mode http
11656 option httplog
11657 option logasap
11658 log global
11659 server cache1 192.168.1.1:3128
11660
11661 # log the name of the virtual server
11662 capture request header Host len 20
11663
11664 # log the amount of data uploaded during a POST
11665 capture request header Content-Length len 10
11666
11667 # log the beginning of the referrer
11668 capture request header Referer len 20
11669
11670 # server name (useful for outgoing proxies only)
11671 capture response header Server len 20
11672
11673 # logging the content-length is useful with "option logasap"
11674 capture response header Content-Length len 10
11675
11676 # log the expected cache behaviour on the response
11677 capture response header Cache-Control len 8
11678
11679 # the Via header will report the next proxy's name
11680 capture response header Via len 20
11681
11682 # log the URL location during a redirection
11683 capture response header Location len 20
11684
11685 >>> Aug 9 20:26:09 localhost \
11686 haproxy[2022]: 127.0.0.1:34014 [09/Aug/2004:20:26:09] proxy-out \
11687 proxy-out/cache1 0/0/0/162/+162 200 +350 - - ---- 0/0/0/0/0 0/0 \
11688 {fr.adserver.yahoo.co||http://fr.f416.mail.} {|864|private||} \
11689 "GET http://fr.adserver.yahoo.com/"
11690
11691 >>> Aug 9 20:30:46 localhost \
11692 haproxy[2022]: 127.0.0.1:34020 [09/Aug/2004:20:30:46] proxy-out \
11693 proxy-out/cache1 0/0/0/182/+182 200 +279 - - ---- 0/0/0/0/0 0/0 \
11694 {w.ods.org||} {Formilux/0.1.8|3495|||} \
Willy Tarreaud72758d2010-01-12 10:42:19 +010011695 "GET http://trafic.1wt.eu/ HTTP/1.1"
Willy Tarreaucc6c8912009-02-22 10:53:55 +010011696
11697 >>> Aug 9 20:30:46 localhost \
11698 haproxy[2022]: 127.0.0.1:34028 [09/Aug/2004:20:30:46] proxy-out \
11699 proxy-out/cache1 0/0/2/126/+128 301 +223 - - ---- 0/0/0/0/0 0/0 \
11700 {www.sytadin.equipement.gouv.fr||http://trafic.1wt.eu/} \
11701 {Apache|230|||http://www.sytadin.} \
Willy Tarreaud72758d2010-01-12 10:42:19 +010011702 "GET http://www.sytadin.equipement.gouv.fr/ HTTP/1.1"
Willy Tarreaucc6c8912009-02-22 10:53:55 +010011703
11704
Willy Tarreauc57f0e22009-05-10 13:12:33 +0200117058.9. Examples of logs
11706---------------------
Willy Tarreaucc6c8912009-02-22 10:53:55 +010011707
11708These are real-world examples of logs accompanied with an explanation. Some of
11709them have been made up by hand. The syslog part has been removed for better
11710reading. Their sole purpose is to explain how to decipher them.
11711
11712 >>> haproxy[674]: 127.0.0.1:33318 [15/Oct/2003:08:31:57.130] px-http \
11713 px-http/srv1 6559/0/7/147/6723 200 243 - - ---- 5/3/3/1/0 0/0 \
11714 "HEAD / HTTP/1.0"
11715
11716 => long request (6.5s) entered by hand through 'telnet'. The server replied
11717 in 147 ms, and the session ended normally ('----')
11718
11719 >>> haproxy[674]: 127.0.0.1:33319 [15/Oct/2003:08:31:57.149] px-http \
11720 px-http/srv1 6559/1230/7/147/6870 200 243 - - ---- 324/239/239/99/0 \
11721 0/9 "HEAD / HTTP/1.0"
11722
11723 => Idem, but the request was queued in the global queue behind 9 other
11724 requests, and waited there for 1230 ms.
11725
11726 >>> haproxy[674]: 127.0.0.1:33320 [15/Oct/2003:08:32:17.654] px-http \
11727 px-http/srv1 9/0/7/14/+30 200 +243 - - ---- 3/3/3/1/0 0/0 \
11728 "GET /image.iso HTTP/1.0"
11729
11730 => request for a long data transfer. The "logasap" option was specified, so
Krzysztof Piotr Oledzkif8645332009-12-13 21:55:50 +010011731 the log was produced just before transferring data. The server replied in
Willy Tarreaucc6c8912009-02-22 10:53:55 +010011732 14 ms, 243 bytes of headers were sent to the client, and total time from
11733 accept to first data byte is 30 ms.
11734
11735 >>> haproxy[674]: 127.0.0.1:33320 [15/Oct/2003:08:32:17.925] px-http \
11736 px-http/srv1 9/0/7/14/30 502 243 - - PH-- 3/2/2/0/0 0/0 \
11737 "GET /cgi-bin/bug.cgi? HTTP/1.0"
11738
11739 => the proxy blocked a server response either because of an "rspdeny" or
11740 "rspideny" filter, or because the response was improperly formatted and
Willy Tarreau3c92c5f2011-08-28 09:45:47 +020011741 not HTTP-compliant, or because it blocked sensitive information which
Willy Tarreaucc6c8912009-02-22 10:53:55 +010011742 risked being cached. In this case, the response is replaced with a "502
11743 bad gateway". The flags ("PH--") tell us that it was haproxy who decided
11744 to return the 502 and not the server.
11745
11746 >>> haproxy[18113]: 127.0.0.1:34548 [15/Oct/2003:15:18:55.798] px-http \
Willy Tarreaud72758d2010-01-12 10:42:19 +010011747 px-http/<NOSRV> -1/-1/-1/-1/8490 -1 0 - - CR-- 2/2/2/0/0 0/0 ""
Willy Tarreaucc6c8912009-02-22 10:53:55 +010011748
11749 => the client never completed its request and aborted itself ("C---") after
11750 8.5s, while the proxy was waiting for the request headers ("-R--").
11751 Nothing was sent to any server.
11752
11753 >>> haproxy[18113]: 127.0.0.1:34549 [15/Oct/2003:15:19:06.103] px-http \
11754 px-http/<NOSRV> -1/-1/-1/-1/50001 408 0 - - cR-- 2/2/2/0/0 0/0 ""
11755
11756 => The client never completed its request, which was aborted by the
11757 time-out ("c---") after 50s, while the proxy was waiting for the request
11758 headers ("-R--"). Nothing was sent to any server, but the proxy could
11759 send a 408 return code to the client.
11760
11761 >>> haproxy[18989]: 127.0.0.1:34550 [15/Oct/2003:15:24:28.312] px-tcp \
11762 px-tcp/srv1 0/0/5007 0 cD 0/0/0/0/0 0/0
11763
11764 => This log was produced with "option tcplog". The client timed out after
11765 5 seconds ("c----").
11766
11767 >>> haproxy[18989]: 10.0.0.1:34552 [15/Oct/2003:15:26:31.462] px-http \
11768 px-http/srv1 3183/-1/-1/-1/11215 503 0 - - SC-- 205/202/202/115/3 \
Willy Tarreaud72758d2010-01-12 10:42:19 +010011769 0/0 "HEAD / HTTP/1.0"
Willy Tarreaucc6c8912009-02-22 10:53:55 +010011770
11771 => The request took 3s to complete (probably a network problem), and the
Willy Tarreauc57f0e22009-05-10 13:12:33 +020011772 connection to the server failed ('SC--') after 4 attempts of 2 seconds
Willy Tarreaucc6c8912009-02-22 10:53:55 +010011773 (config says 'retries 3'), and no redispatch (otherwise we would have
11774 seen "/+3"). Status code 503 was returned to the client. There were 115
11775 connections on this server, 202 connections on this proxy, and 205 on
11776 the global process. It is possible that the server refused the
11777 connection because of too many already established.
Willy Tarreau844e3c52008-01-11 16:28:18 +010011778
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +010011779
Willy Tarreauc57f0e22009-05-10 13:12:33 +0200117809. Statistics and monitoring
11781----------------------------
11782
11783It is possible to query HAProxy about its status. The most commonly used
11784mechanism is the HTTP statistics page. This page also exposes an alternative
11785CSV output format for monitoring tools. The same format is provided on the
11786Unix socket.
11787
11788
117899.1. CSV format
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +010011790---------------
Krzysztof Piotr Oledzkif58a9622008-02-23 01:19:10 +010011791
Willy Tarreau7f062c42009-03-05 18:43:00 +010011792The statistics may be consulted either from the unix socket or from the HTTP
11793page. Both means provide a CSV format whose fields follow.
11794
Krzysztof Piotr Oledzkif58a9622008-02-23 01:19:10 +010011795 0. pxname: proxy name
11796 1. svname: service name (FRONTEND for frontend, BACKEND for backend, any name
11797 for server)
11798 2. qcur: current queued requests
11799 3. qmax: max queued requests
11800 4. scur: current sessions
11801 5. smax: max sessions
11802 6. slim: sessions limit
11803 7. stot: total sessions
11804 8. bin: bytes in
11805 9. bout: bytes out
11806 10. dreq: denied requests
Krzysztof Piotr Oledzki2c6962c2008-03-02 02:42:14 +010011807 11. dresp: denied responses
Krzysztof Piotr Oledzkif58a9622008-02-23 01:19:10 +010011808 12. ereq: request errors
11809 13. econ: connection errors
Willy Tarreauae526782010-03-04 20:34:23 +010011810 14. eresp: response errors (among which srv_abrt)
Krzysztof Piotr Oledzkif58a9622008-02-23 01:19:10 +010011811 15. wretr: retries (warning)
11812 16. wredis: redispatches (warning)
Cyril Bonté0dae5852010-02-03 00:26:28 +010011813 17. status: status (UP/DOWN/NOLB/MAINT/MAINT(via)...)
Krzysztof Piotr Oledzkif58a9622008-02-23 01:19:10 +010011814 18. weight: server weight (server), total weight (backend)
11815 19. act: server is active (server), number of active servers (backend)
11816 20. bck: server is backup (server), number of backup servers (backend)
11817 21. chkfail: number of failed checks
11818 22. chkdown: number of UP->DOWN transitions
11819 23. lastchg: last status change (in seconds)
11820 24. downtime: total downtime (in seconds)
11821 25. qlimit: queue limit
11822 26. pid: process id (0 for first instance, 1 for second, ...)
11823 27. iid: unique proxy id
11824 28. sid: service id (unique inside a proxy)
11825 29. throttle: warm up status
11826 30. lbtot: total number of times a server was selected
11827 31. tracked: id of proxy/server if tracking is enabled
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +020011828 32. type (0=frontend, 1=backend, 2=server, 3=socket)
Krzysztof Piotr Oledzkidb57c6b2009-08-31 21:23:27 +020011829 33. rate: number of sessions per second over last elapsed second
11830 34. rate_lim: limit on new sessions per second
11831 35. rate_max: max number of new sessions per second
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +020011832 36. check_status: status of last health check, one of:
Cyril Bontéf0c60612010-02-06 14:44:47 +010011833 UNK -> unknown
11834 INI -> initializing
11835 SOCKERR -> socket error
11836 L4OK -> check passed on layer 4, no upper layers testing enabled
11837 L4TMOUT -> layer 1-4 timeout
11838 L4CON -> layer 1-4 connection problem, for example
11839 "Connection refused" (tcp rst) or "No route to host" (icmp)
11840 L6OK -> check passed on layer 6
11841 L6TOUT -> layer 6 (SSL) timeout
11842 L6RSP -> layer 6 invalid response - protocol error
11843 L7OK -> check passed on layer 7
11844 L7OKC -> check conditionally passed on layer 7, for example 404 with
11845 disable-on-404
11846 L7TOUT -> layer 7 (HTTP/SMTP) timeout
11847 L7RSP -> layer 7 invalid response - protocol error
11848 L7STS -> layer 7 response error, for example HTTP 5xx
Krzysztof Piotr Oledzki09605412009-09-23 22:09:24 +020011849 37. check_code: layer5-7 code, if available
11850 38. check_duration: time in ms took to finish last health check
Krzysztof Piotr Oledzkif8645332009-12-13 21:55:50 +010011851 39. hrsp_1xx: http responses with 1xx code
11852 40. hrsp_2xx: http responses with 2xx code
11853 41. hrsp_3xx: http responses with 3xx code
11854 42. hrsp_4xx: http responses with 4xx code
11855 43. hrsp_5xx: http responses with 5xx code
11856 44. hrsp_other: http responses with other codes (protocol error)
Willy Tarreaud63335a2010-02-26 12:56:52 +010011857 45. hanafail: failed health checks details
11858 46. req_rate: HTTP requests per second over last elapsed second
11859 47. req_rate_max: max number of HTTP requests per second observed
11860 48. req_tot: total number of HTTP requests received
Willy Tarreauae526782010-03-04 20:34:23 +010011861 49. cli_abrt: number of data transfers aborted by the client
11862 50. srv_abrt: number of data transfers aborted by the server (inc. in eresp)
Willy Tarreau55058a72012-11-21 08:27:21 +010011863 51. comp_in: number of HTTP response bytes fed to the compressor
11864 52. comp_out: number of HTTP response bytes emitted by the compressor
11865 53. comp_byp: number of bytes that bypassed the HTTP compressor (CPU/BW limit)
Willy Tarreau11d4ec82012-11-26 00:49:03 +010011866 54. comp_rsp: number of HTTP responses that were compressed
Willy Tarreau844e3c52008-01-11 16:28:18 +010011867
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +010011868
Willy Tarreauc57f0e22009-05-10 13:12:33 +0200118699.2. Unix Socket commands
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +010011870-------------------------
Krzysztof Piotr Oledzki2c6962c2008-03-02 02:42:14 +010011871
Willy Tarreau468f4932013-08-01 16:50:16 +020011872The stats socket is not enabled by default. In order to enable it, it is
11873necessary to add one line in the global section of the haproxy configuration.
11874A second line is recommended to set a larger timeout, always appreciated when
11875issuing commands by hand :
11876
11877 global
11878 stats socket /var/run/haproxy.sock mode 600 level admin
11879 stats timeout 2m
11880
11881It is also possible to add multiple instances of the stats socket by repeating
11882the line, and make them listen to a TCP port instead of a UNIX socket. This is
11883never done by default because this is dangerous, but can be handy in some
11884situations :
11885
11886 global
11887 stats socket /var/run/haproxy.sock mode 600 level admin
11888 stats socket ipv4@192.168.0.1:9999 level admin
11889 stats timeout 2m
11890
11891To access the socket, an external utility such as "socat" is required. Socat is a
11892swiss-army knife to connect anything to anything. We use it to connect terminals
11893to the socket, or a couple of stdin/stdout pipes to it for scripts. The two main
11894syntaxes we'll use are the following :
11895
11896 # socat /var/run/haproxy.sock stdio
11897 # socat /var/run/haproxy.sock readline
11898
11899The first one is used with scripts. It is possible to send the output of a
11900script to haproxy, and pass haproxy's output to another script. That's useful
11901for retrieving counters or attack traces for example.
11902
11903The second one is only useful for issuing commands by hand. It has the benefit
11904that the terminal is handled by the readline library which supports line
11905editing and history, which is very convenient when issuing repeated commands
11906(eg: watch a counter).
11907
11908The socket supports two operation modes :
11909 - interactive
11910 - non-interactive
11911
11912The non-interactive mode is the default when socat connects to the socket. In
11913this mode, a single line may be sent. It is processed as a whole, responses are
11914sent back, and the connection closes after the end of the response. This is the
11915mode that scripts and monitoring tools use. It is possible to send multiple
11916commands in this mode, they need to be delimited by a semi-colon (';'). For
11917example :
11918
11919 # echo "show info;show stat;show table" | socat /var/run/haproxy stdio
11920
11921The interactive mode displays a prompt ('>') and waits for commands to be
11922entered on the line, then processes them, and displays the prompt again to wait
11923for a new command. This mode is entered via the "prompt" command which must be
11924sent on the first line in non-interactive mode. The mode is a flip switch, if
11925"prompt" is sent in interactive mode, it is disabled and the connection closes
11926after processing the last command of the same line.
11927
11928For this reason, when debugging by hand, it's quite common to start with the
11929"prompt" command :
11930
11931 # socat /var/run/haproxy readline
11932 prompt
11933 > show info
11934 ...
11935 >
11936
11937Since multiple commands may be issued at once, haproxy uses the empty line as a
11938delimiter to mark an end of output for each command, and takes care of ensuring
11939that no command can emit an empty line on output. A script can thus easily
11940parse the output even when multiple commands were pipelined on a single line.
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +010011941
Willy Tarreau9a42c0d2009-09-22 19:31:03 +020011942It is important to understand that when multiple haproxy processes are started
11943on the same sockets, any process may pick up the request and will output its
11944own stats.
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +010011945
Willy Tarreau468f4932013-08-01 16:50:16 +020011946The list of commands currently supported on the stats socket is provided below.
11947If an unknown command is sent, haproxy displays the usage message which reminds
11948all supported commands. Some commands support a more complex syntax, generally
11949it will explain what part of the command is invalid when this happens.
11950
Willy Tarreaud63335a2010-02-26 12:56:52 +010011951clear counters
11952 Clear the max values of the statistics counters in each proxy (frontend &
11953 backend) and in each server. The cumulated counters are not affected. This
11954 can be used to get clean counters after an incident, without having to
11955 restart nor to clear traffic counters. This command is restricted and can
11956 only be issued on sockets configured for levels "operator" or "admin".
11957
11958clear counters all
11959 Clear all statistics counters in each proxy (frontend & backend) and in each
11960 server. This has the same effect as restarting. This command is restricted
11961 and can only be issued on sockets configured for level "admin".
11962
Simon Hormanc88b8872011-06-15 15:18:49 +090011963clear table <table> [ data.<type> <operator> <value> ] | [ key <key> ]
11964 Remove entries from the stick-table <table>.
11965
11966 This is typically used to unblock some users complaining they have been
11967 abusively denied access to a service, but this can also be used to clear some
11968 stickiness entries matching a server that is going to be replaced (see "show
11969 table" below for details). Note that sometimes, removal of an entry will be
11970 refused because it is currently tracked by a session. Retrying a few seconds
11971 later after the session ends is usual enough.
11972
11973 In the case where no options arguments are given all entries will be removed.
11974
11975 When the "data." form is used entries matching a filter applied using the
11976 stored data (see "stick-table" in section 4.2) are removed. A stored data
11977 type must be specified in <type>, and this data type must be stored in the
11978 table otherwise an error is reported. The data is compared according to
11979 <operator> with the 64-bit integer <value>. Operators are the same as with
11980 the ACLs :
11981
11982 - eq : match entries whose data is equal to this value
11983 - ne : match entries whose data is not equal to this value
11984 - le : match entries whose data is less than or equal to this value
11985 - ge : match entries whose data is greater than or equal to this value
11986 - lt : match entries whose data is less than this value
11987 - gt : match entries whose data is greater than this value
11988
11989 When the key form is used the entry <key> is removed. The key must be of the
Simon Horman619e3cc2011-06-15 15:18:52 +090011990 same type as the table, which currently is limited to IPv4, IPv6, integer and
11991 string.
Willy Tarreau88bc4ec2010-08-01 07:58:48 +020011992
11993 Example :
Willy Tarreau62a36c42010-08-17 15:53:10 +020011994 $ echo "show table http_proxy" | socat stdio /tmp/sock1
Emeric Brun7c6b82e2010-09-24 16:34:28 +020011995 >>> # table: http_proxy, type: ip, size:204800, used:2
Willy Tarreau62a36c42010-08-17 15:53:10 +020011996 >>> 0x80e6a4c: key=127.0.0.1 use=0 exp=3594729 gpc0=0 conn_rate(30000)=1 \
11997 bytes_out_rate(60000)=187
11998 >>> 0x80e6a80: key=127.0.0.2 use=0 exp=3594740 gpc0=1 conn_rate(30000)=10 \
11999 bytes_out_rate(60000)=191
Willy Tarreau88bc4ec2010-08-01 07:58:48 +020012000
12001 $ echo "clear table http_proxy key 127.0.0.1" | socat stdio /tmp/sock1
12002
12003 $ echo "show table http_proxy" | socat stdio /tmp/sock1
Emeric Brun7c6b82e2010-09-24 16:34:28 +020012004 >>> # table: http_proxy, type: ip, size:204800, used:1
Willy Tarreau62a36c42010-08-17 15:53:10 +020012005 >>> 0x80e6a80: key=127.0.0.2 use=0 exp=3594740 gpc0=1 conn_rate(30000)=10 \
12006 bytes_out_rate(60000)=191
Simon Hormanc88b8872011-06-15 15:18:49 +090012007 $ echo "clear table http_proxy data.gpc0 eq 1" | socat stdio /tmp/sock1
12008 $ echo "show table http_proxy" | socat stdio /tmp/sock1
12009 >>> # table: http_proxy, type: ip, size:204800, used:1
Willy Tarreau88bc4ec2010-08-01 07:58:48 +020012010
Willy Tarreau532a4502011-09-07 22:37:44 +020012011disable frontend <frontend>
12012 Mark the frontend as temporarily stopped. This corresponds to the mode which
12013 is used during a soft restart : the frontend releases the port but can be
12014 enabled again if needed. This should be used with care as some non-Linux OSes
12015 are unable to enable it back. This is intended to be used in environments
12016 where stopping a proxy is not even imaginable but a misconfigured proxy must
12017 be fixed. That way it's possible to release the port and bind it into another
12018 process to restore operations. The frontend will appear with status "STOP"
12019 on the stats page.
12020
12021 The frontend may be specified either by its name or by its numeric ID,
12022 prefixed with a sharp ('#').
12023
12024 This command is restricted and can only be issued on sockets configured for
12025 level "admin".
12026
Willy Tarreaud63335a2010-02-26 12:56:52 +010012027disable server <backend>/<server>
12028 Mark the server DOWN for maintenance. In this mode, no more checks will be
12029 performed on the server until it leaves maintenance.
12030 If the server is tracked by other servers, those servers will be set to DOWN
12031 during the maintenance.
12032
12033 In the statistics page, a server DOWN for maintenance will appear with a
12034 "MAINT" status, its tracking servers with the "MAINT(via)" one.
12035
12036 Both the backend and the server may be specified either by their name or by
Willy Tarreauf5f31922011-08-02 11:32:07 +020012037 their numeric ID, prefixed with a sharp ('#').
Willy Tarreaud63335a2010-02-26 12:56:52 +010012038
12039 This command is restricted and can only be issued on sockets configured for
12040 level "admin".
12041
Willy Tarreau532a4502011-09-07 22:37:44 +020012042enable frontend <frontend>
12043 Resume a frontend which was temporarily stopped. It is possible that some of
12044 the listening ports won't be able to bind anymore (eg: if another process
12045 took them since the 'disable frontend' operation). If this happens, an error
12046 is displayed. Some operating systems might not be able to resume a frontend
12047 which was disabled.
12048
12049 The frontend may be specified either by its name or by its numeric ID,
12050 prefixed with a sharp ('#').
12051
12052 This command is restricted and can only be issued on sockets configured for
12053 level "admin".
12054
Willy Tarreaud63335a2010-02-26 12:56:52 +010012055enable server <backend>/<server>
12056 If the server was previously marked as DOWN for maintenance, this marks the
12057 server UP and checks are re-enabled.
12058
12059 Both the backend and the server may be specified either by their name or by
Willy Tarreauf5f31922011-08-02 11:32:07 +020012060 their numeric ID, prefixed with a sharp ('#').
Willy Tarreaud63335a2010-02-26 12:56:52 +010012061
12062 This command is restricted and can only be issued on sockets configured for
12063 level "admin".
12064
12065get weight <backend>/<server>
12066 Report the current weight and the initial weight of server <server> in
12067 backend <backend> or an error if either doesn't exist. The initial weight is
12068 the one that appears in the configuration file. Both are normally equal
12069 unless the current weight has been changed. Both the backend and the server
12070 may be specified either by their name or by their numeric ID, prefixed with a
Willy Tarreauf5f31922011-08-02 11:32:07 +020012071 sharp ('#').
Willy Tarreaud63335a2010-02-26 12:56:52 +010012072
Willy Tarreau9a42c0d2009-09-22 19:31:03 +020012073help
12074 Print the list of known keywords and their basic usage. The same help screen
12075 is also displayed for unknown commands.
Willy Tarreau3dfe6cd2008-12-07 22:29:48 +010012076
Willy Tarreau9a42c0d2009-09-22 19:31:03 +020012077prompt
12078 Toggle the prompt at the beginning of the line and enter or leave interactive
12079 mode. In interactive mode, the connection is not closed after a command
12080 completes. Instead, the prompt will appear again, indicating the user that
12081 the interpreter is waiting for a new command. The prompt consists in a right
12082 angle bracket followed by a space "> ". This mode is particularly convenient
12083 when one wants to periodically check information such as stats or errors.
12084 It is also a good idea to enter interactive mode before issuing a "help"
12085 command.
12086
12087quit
12088 Close the connection when in interactive mode.
Krzysztof Piotr Oledzki2c6962c2008-03-02 02:42:14 +010012089
Willy Tarreau2a0f4d22011-08-02 11:49:05 +020012090set maxconn frontend <frontend> <value>
Willy Tarreau3c7a79d2012-09-26 21:07:15 +020012091 Dynamically change the specified frontend's maxconn setting. Any positive
12092 value is allowed including zero, but setting values larger than the global
12093 maxconn does not make much sense. If the limit is increased and connections
12094 were pending, they will immediately be accepted. If it is lowered to a value
12095 below the current number of connections, new connections acceptation will be
Willy Tarreau2a0f4d22011-08-02 11:49:05 +020012096 delayed until the threshold is reached. The frontend might be specified by
12097 either its name or its numeric ID prefixed with a sharp ('#').
12098
Willy Tarreau91886b62011-09-07 14:38:31 +020012099set maxconn global <maxconn>
12100 Dynamically change the global maxconn setting within the range defined by the
12101 initial global maxconn setting. If it is increased and connections were
12102 pending, they will immediately be accepted. If it is lowered to a value below
12103 the current number of connections, new connections acceptation will be
12104 delayed until the threshold is reached. A value of zero restores the initial
12105 setting.
12106
Willy Tarreauf5b22872011-09-07 16:13:44 +020012107set rate-limit connections global <value>
12108 Change the process-wide connection rate limit, which is set by the global
12109 'maxconnrate' setting. A value of zero disables the limitation. This limit
12110 applies to all frontends and the change has an immediate effect. The value
12111 is passed in number of connections per second.
12112
William Lallemandd85f9172012-11-09 17:05:39 +010012113set rate-limit http-compression global <value>
12114 Change the maximum input compression rate, which is set by the global
12115 'maxcomprate' setting. A value of zero disables the limitation. The value is
William Lallemand096f5542012-11-19 17:26:05 +010012116 passed in number of kilobytes per second. The value is available in the "show
12117 info" on the line "CompressBpsRateLim" in bytes.
William Lallemandd85f9172012-11-09 17:05:39 +010012118
Willy Tarreau47060b62013-08-01 21:11:42 +020012119set table <table> key <key> [data.<data_type> <value>]*
Willy Tarreau654694e2012-06-07 01:03:16 +020012120 Create or update a stick-table entry in the table. If the key is not present,
12121 an entry is inserted. See stick-table in section 4.2 to find all possible
12122 values for <data_type>. The most likely use consists in dynamically entering
12123 entries for source IP addresses, with a flag in gpc0 to dynamically block an
Willy Tarreau47060b62013-08-01 21:11:42 +020012124 IP address or affect its quality of service. It is possible to pass multiple
12125 data_types in a single call.
Willy Tarreau654694e2012-06-07 01:03:16 +020012126
Willy Tarreaud63335a2010-02-26 12:56:52 +010012127set timeout cli <delay>
12128 Change the CLI interface timeout for current connection. This can be useful
12129 during long debugging sessions where the user needs to constantly inspect
12130 some indicators without being disconnected. The delay is passed in seconds.
12131
12132set weight <backend>/<server> <weight>[%]
12133 Change a server's weight to the value passed in argument. If the value ends
12134 with the '%' sign, then the new weight will be relative to the initially
Simon Horman58b5d292013-02-12 10:45:52 +090012135 configured weight. Absolute weights are permitted between 0 and 256.
12136 Relative weights must be positive with the resulting absolute weight is
12137 capped at 256. Servers which are part of a farm running a static
12138 load-balancing algorithm have stricter limitations because the weight
12139 cannot change once set. Thus for these servers, the only accepted values
12140 are 0 and 100% (or 0 and the initial weight). Changes take effect
12141 immediately, though certain LB algorithms require a certain amount of
12142 requests to consider changes. A typical usage of this command is to
12143 disable a server during an update by setting its weight to zero, then to
12144 enable it again after the update by setting it back to 100%. This command
12145 is restricted and can only be issued on sockets configured for level
12146 "admin". Both the backend and the server may be specified either by their
12147 name or by their numeric ID, prefixed with a sharp ('#').
Willy Tarreaud63335a2010-02-26 12:56:52 +010012148
Willy Tarreaue0c8a1a2009-03-04 16:33:10 +010012149show errors [<iid>]
12150 Dump last known request and response errors collected by frontends and
12151 backends. If <iid> is specified, the limit the dump to errors concerning
Willy Tarreau6162db22009-10-10 17:13:00 +020012152 either frontend or backend whose ID is <iid>. This command is restricted
12153 and can only be issued on sockets configured for levels "operator" or
12154 "admin".
Willy Tarreaue0c8a1a2009-03-04 16:33:10 +010012155
12156 The errors which may be collected are the last request and response errors
12157 caused by protocol violations, often due to invalid characters in header
12158 names. The report precisely indicates what exact character violated the
12159 protocol. Other important information such as the exact date the error was
12160 detected, frontend and backend names, the server name (when known), the
12161 internal session ID and the source address which has initiated the session
12162 are reported too.
12163
12164 All characters are returned, and non-printable characters are encoded. The
12165 most common ones (\t = 9, \n = 10, \r = 13 and \e = 27) are encoded as one
12166 letter following a backslash. The backslash itself is encoded as '\\' to
12167 avoid confusion. Other non-printable characters are encoded '\xNN' where
12168 NN is the two-digits hexadecimal representation of the character's ASCII
12169 code.
12170
12171 Lines are prefixed with the position of their first character, starting at 0
12172 for the beginning of the buffer. At most one input line is printed per line,
12173 and large lines will be broken into multiple consecutive output lines so that
12174 the output never goes beyond 79 characters wide. It is easy to detect if a
12175 line was broken, because it will not end with '\n' and the next line's offset
12176 will be followed by a '+' sign, indicating it is a continuation of previous
12177 line.
12178
12179 Example :
Willy Tarreau62a36c42010-08-17 15:53:10 +020012180 $ echo "show errors" | socat stdio /tmp/sock1
12181 >>> [04/Mar/2009:15:46:56.081] backend http-in (#2) : invalid response
Willy Tarreaue0c8a1a2009-03-04 16:33:10 +010012182 src 127.0.0.1, session #54, frontend fe-eth0 (#1), server s2 (#1)
12183 response length 213 bytes, error at position 23:
12184
12185 00000 HTTP/1.0 200 OK\r\n
12186 00017 header/bizarre:blah\r\n
12187 00038 Location: blah\r\n
12188 00054 Long-line: this is a very long line which should b
12189 00104+ e broken into multiple lines on the output buffer,
12190 00154+ otherwise it would be too large to print in a ter
12191 00204+ minal\r\n
12192 00211 \r\n
12193
Willy Tarreauc57f0e22009-05-10 13:12:33 +020012194 In the example above, we see that the backend "http-in" which has internal
Willy Tarreaue0c8a1a2009-03-04 16:33:10 +010012195 ID 2 has blocked an invalid response from its server s2 which has internal
12196 ID 1. The request was on session 54 initiated by source 127.0.0.1 and
12197 received by frontend fe-eth0 whose ID is 1. The total response length was
12198 213 bytes when the error was detected, and the error was at byte 23. This
12199 is the slash ('/') in header name "header/bizarre", which is not a valid
12200 HTTP character for a header name.
Krzysztof Piotr Oledzki2c6962c2008-03-02 02:42:14 +010012201
Willy Tarreau9a42c0d2009-09-22 19:31:03 +020012202show info
12203 Dump info about haproxy status on current process.
12204
12205show sess
12206 Dump all known sessions. Avoid doing this on slow connections as this can
Willy Tarreau6162db22009-10-10 17:13:00 +020012207 be huge. This command is restricted and can only be issued on sockets
12208 configured for levels "operator" or "admin".
12209
Willy Tarreau66dc20a2010-03-05 17:53:32 +010012210show sess <id>
12211 Display a lot of internal information about the specified session identifier.
12212 This identifier is the first field at the beginning of the lines in the dumps
12213 of "show sess" (it corresponds to the session pointer). Those information are
12214 useless to most users but may be used by haproxy developers to troubleshoot a
12215 complex bug. The output format is intentionally not documented so that it can
Willy Tarreau76153662012-11-26 01:16:39 +010012216 freely evolve depending on demands. The special id "all" dumps the states of
12217 all sessions, which can be avoided as much as possible as it is highly CPU
12218 intensive and can take a lot of time.
Willy Tarreau9a42c0d2009-09-22 19:31:03 +020012219
12220show stat [<iid> <type> <sid>]
12221 Dump statistics in the CSV format. By passing <id>, <type> and <sid>, it is
12222 possible to dump only selected items :
12223 - <iid> is a proxy ID, -1 to dump everything
12224 - <type> selects the type of dumpable objects : 1 for frontends, 2 for
12225 backends, 4 for servers, -1 for everything. These values can be ORed,
12226 for example:
12227 1 + 2 = 3 -> frontend + backend.
12228 1 + 2 + 4 = 7 -> frontend + backend + server.
12229 - <sid> is a server ID, -1 to dump everything from the selected proxy.
12230
12231 Example :
Willy Tarreau62a36c42010-08-17 15:53:10 +020012232 $ echo "show info;show stat" | socat stdio unix-connect:/tmp/sock1
12233 >>> Name: HAProxy
Willy Tarreau9a42c0d2009-09-22 19:31:03 +020012234 Version: 1.4-dev2-49
12235 Release_date: 2009/09/23
12236 Nbproc: 1
12237 Process_num: 1
12238 (...)
12239
12240 # pxname,svname,qcur,qmax,scur,smax,slim,stot,bin,bout,dreq, (...)
12241 stats,FRONTEND,,,0,0,1000,0,0,0,0,0,0,,,,,OPEN,,,,,,,,,1,1,0, (...)
12242 stats,BACKEND,0,0,0,0,1000,0,0,0,0,0,,0,0,0,0,UP,0,0,0,,0,250,(...)
12243 (...)
12244 www1,BACKEND,0,0,0,0,1000,0,0,0,0,0,,0,0,0,0,UP,1,1,0,,0,250, (...)
12245
12246 $
12247
12248 Here, two commands have been issued at once. That way it's easy to find
12249 which process the stats apply to in multi-process mode. Notice the empty
12250 line after the information output which marks the end of the first block.
12251 A similar empty line appears at the end of the second block (stats) so that
Krzysztof Piotr Oledzkif8645332009-12-13 21:55:50 +010012252 the reader knows the output has not been truncated.
Willy Tarreau9a42c0d2009-09-22 19:31:03 +020012253
Willy Tarreau88bc4ec2010-08-01 07:58:48 +020012254show table
12255 Dump general information on all known stick-tables. Their name is returned
12256 (the name of the proxy which holds them), their type (currently zero, always
12257 IP), their size in maximum possible number of entries, and the number of
12258 entries currently in use.
12259
12260 Example :
Willy Tarreau62a36c42010-08-17 15:53:10 +020012261 $ echo "show table" | socat stdio /tmp/sock1
Simon Horman64b28d02011-08-13 08:03:50 +090012262 >>> # table: front_pub, type: ip, size:204800, used:171454
12263 >>> # table: back_rdp, type: ip, size:204800, used:0
Willy Tarreau88bc4ec2010-08-01 07:58:48 +020012264
Simon Horman17bce342011-06-15 15:18:47 +090012265show table <name> [ data.<type> <operator> <value> ] | [ key <key> ]
Willy Tarreau88bc4ec2010-08-01 07:58:48 +020012266 Dump contents of stick-table <name>. In this mode, a first line of generic
12267 information about the table is reported as with "show table", then all
12268 entries are dumped. Since this can be quite heavy, it is possible to specify
Simon Horman17bce342011-06-15 15:18:47 +090012269 a filter in order to specify what entries to display.
12270
12271 When the "data." form is used the filter applies to the stored data (see
12272 "stick-table" in section 4.2). A stored data type must be specified
12273 in <type>, and this data type must be stored in the table otherwise an
12274 error is reported. The data is compared according to <operator> with the
12275 64-bit integer <value>. Operators are the same as with the ACLs :
12276
Willy Tarreau88bc4ec2010-08-01 07:58:48 +020012277 - eq : match entries whose data is equal to this value
12278 - ne : match entries whose data is not equal to this value
12279 - le : match entries whose data is less than or equal to this value
12280 - ge : match entries whose data is greater than or equal to this value
12281 - lt : match entries whose data is less than this value
12282 - gt : match entries whose data is greater than this value
12283
Simon Hormanc88b8872011-06-15 15:18:49 +090012284
12285 When the key form is used the entry <key> is shown. The key must be of the
Simon Horman619e3cc2011-06-15 15:18:52 +090012286 same type as the table, which currently is limited to IPv4, IPv6, integer,
12287 and string.
Simon Horman17bce342011-06-15 15:18:47 +090012288
Willy Tarreau88bc4ec2010-08-01 07:58:48 +020012289 Example :
Willy Tarreau62a36c42010-08-17 15:53:10 +020012290 $ echo "show table http_proxy" | socat stdio /tmp/sock1
Simon Horman64b28d02011-08-13 08:03:50 +090012291 >>> # table: http_proxy, type: ip, size:204800, used:2
Willy Tarreau62a36c42010-08-17 15:53:10 +020012292 >>> 0x80e6a4c: key=127.0.0.1 use=0 exp=3594729 gpc0=0 conn_rate(30000)=1 \
12293 bytes_out_rate(60000)=187
12294 >>> 0x80e6a80: key=127.0.0.2 use=0 exp=3594740 gpc0=1 conn_rate(30000)=10 \
12295 bytes_out_rate(60000)=191
Willy Tarreau88bc4ec2010-08-01 07:58:48 +020012296
Willy Tarreau62a36c42010-08-17 15:53:10 +020012297 $ echo "show table http_proxy data.gpc0 gt 0" | socat stdio /tmp/sock1
Simon Horman64b28d02011-08-13 08:03:50 +090012298 >>> # table: http_proxy, type: ip, size:204800, used:2
Willy Tarreau62a36c42010-08-17 15:53:10 +020012299 >>> 0x80e6a80: key=127.0.0.2 use=0 exp=3594740 gpc0=1 conn_rate(30000)=10 \
12300 bytes_out_rate(60000)=191
Willy Tarreau88bc4ec2010-08-01 07:58:48 +020012301
Willy Tarreau62a36c42010-08-17 15:53:10 +020012302 $ echo "show table http_proxy data.conn_rate gt 5" | \
12303 socat stdio /tmp/sock1
Simon Horman64b28d02011-08-13 08:03:50 +090012304 >>> # table: http_proxy, type: ip, size:204800, used:2
Willy Tarreau62a36c42010-08-17 15:53:10 +020012305 >>> 0x80e6a80: key=127.0.0.2 use=0 exp=3594740 gpc0=1 conn_rate(30000)=10 \
12306 bytes_out_rate(60000)=191
Willy Tarreau88bc4ec2010-08-01 07:58:48 +020012307
Simon Horman17bce342011-06-15 15:18:47 +090012308 $ echo "show table http_proxy key 127.0.0.2" | \
12309 socat stdio /tmp/sock1
Simon Horman64b28d02011-08-13 08:03:50 +090012310 >>> # table: http_proxy, type: ip, size:204800, used:2
Simon Horman17bce342011-06-15 15:18:47 +090012311 >>> 0x80e6a80: key=127.0.0.2 use=0 exp=3594740 gpc0=1 conn_rate(30000)=10 \
12312 bytes_out_rate(60000)=191
12313
Willy Tarreau88bc4ec2010-08-01 07:58:48 +020012314 When the data criterion applies to a dynamic value dependent on time such as
12315 a bytes rate, the value is dynamically computed during the evaluation of the
12316 entry in order to decide whether it has to be dumped or not. This means that
12317 such a filter could match for some time then not match anymore because as
12318 time goes, the average event rate drops.
12319
12320 It is possible to use this to extract lists of IP addresses abusing the
12321 service, in order to monitor them or even blacklist them in a firewall.
12322 Example :
Willy Tarreau62a36c42010-08-17 15:53:10 +020012323 $ echo "show table http_proxy data.gpc0 gt 0" \
12324 | socat stdio /tmp/sock1 \
Willy Tarreau88bc4ec2010-08-01 07:58:48 +020012325 | fgrep 'key=' | cut -d' ' -f2 | cut -d= -f2 > abusers-ip.txt
12326 ( or | awk '/key/{ print a[split($2,a,"=")]; }' )
Krzysztof Piotr Oledzki719e7262009-10-04 15:02:46 +020012327
Willy Tarreau532a4502011-09-07 22:37:44 +020012328shutdown frontend <frontend>
12329 Completely delete the specified frontend. All the ports it was bound to will
12330 be released. It will not be possible to enable the frontend anymore after
12331 this operation. This is intended to be used in environments where stopping a
12332 proxy is not even imaginable but a misconfigured proxy must be fixed. That
12333 way it's possible to release the port and bind it into another process to
12334 restore operations. The frontend will not appear at all on the stats page
12335 once it is terminated.
12336
12337 The frontend may be specified either by its name or by its numeric ID,
12338 prefixed with a sharp ('#').
12339
12340 This command is restricted and can only be issued on sockets configured for
12341 level "admin".
12342
Willy Tarreaua295edc2011-09-07 23:21:03 +020012343shutdown session <id>
12344 Immediately terminate the session matching the specified session identifier.
12345 This identifier is the first field at the beginning of the lines in the dumps
12346 of "show sess" (it corresponds to the session pointer). This can be used to
12347 terminate a long-running session without waiting for a timeout or when an
12348 endless transfer is ongoing. Such terminated sessions are reported with a 'K'
12349 flag in the logs.
12350
Willy Tarreau52b2d222011-09-07 23:48:48 +020012351shutdown sessions <backend>/<server>
12352 Immediately terminate all the sessions attached to the specified server. This
12353 can be used to terminate long-running sessions after a server is put into
12354 maintenance mode, for instance. Such terminated sessions are reported with a
12355 'K' flag in the logs.
12356
Willy Tarreau0ba27502007-12-24 16:55:16 +010012357/*
12358 * Local variables:
12359 * fill-column: 79
12360 * End:
12361 */