blob: 5000d9c3debc929f0b36023b703aaf453e6cbb5f [file] [log] [blame]
Willy Tarreaubaaee002006-06-26 02:48:02 +02001/*
Willy Tarreaudeb9ed82010-01-03 21:03:22 +01002 * include/common/defaults.h
3 * Miscellaneous default values.
4 *
5 * Copyright (C) 2000-2010 Willy Tarreau - w@1wt.eu
6 *
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation, version 2.1
10 * exclusively.
11 *
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
16 *
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20 */
Willy Tarreaubaaee002006-06-26 02:48:02 +020021
Willy Tarreau2dd0d472006-06-29 17:53:05 +020022#ifndef _COMMON_DEFAULTS_H
23#define _COMMON_DEFAULTS_H
Willy Tarreaubaaee002006-06-26 02:48:02 +020024
Willy Tarreaubaaee002006-06-26 02:48:02 +020025/*
26 * BUFSIZE defines the size of a read and write buffer. It is the maximum
27 * amount of bytes which can be stored by the proxy for each session. However,
28 * when reading HTTP headers, the proxy needs some spare space to add or rewrite
29 * headers if needed. The size of this spare is defined with MAXREWRITE. So it
30 * is not possible to process headers longer than BUFSIZE-MAXREWRITE bytes. By
31 * default, BUFSIZE=16384 bytes and MAXREWRITE=BUFSIZE/2, so the maximum length
32 * of headers accepted is 8192 bytes, which is in line with Apache's limits.
33 */
34#ifndef BUFSIZE
35#define BUFSIZE 16384
36#endif
37
38// reserved buffer space for header rewriting
39#ifndef MAXREWRITE
40#define MAXREWRITE (BUFSIZE / 2)
41#endif
42
Willy Tarreaubf43f6e2013-06-03 15:52:52 +020043#ifndef REQURI_LEN
Willy Tarreaubaaee002006-06-26 02:48:02 +020044#define REQURI_LEN 1024
Willy Tarreaubf43f6e2013-06-03 15:52:52 +020045#endif
46
47#ifndef CAPTURE_LEN
Willy Tarreaubaaee002006-06-26 02:48:02 +020048#define CAPTURE_LEN 64
Willy Tarreaubf43f6e2013-06-03 15:52:52 +020049#endif
Willy Tarreaubaaee002006-06-26 02:48:02 +020050
Krzysztof Piotr Oledzkie6bbd742007-11-01 00:33:12 +010051// maximum line size when parsing config
52#ifndef LINESIZE
53#define LINESIZE 2048
54#endif
55
Willy Tarreaubaaee002006-06-26 02:48:02 +020056// max # args on a configuration line
Krzysztof Piotr Oledzkie6bbd742007-11-01 00:33:12 +010057#define MAX_LINE_ARGS 64
Willy Tarreaubaaee002006-06-26 02:48:02 +020058
Willy Tarreau5ca791d2009-08-16 19:06:42 +020059// max # args on a stats socket
60#define MAX_STATS_ARGS 16
Krzysztof Piotr Oledzki2c6962c2008-03-02 02:42:14 +010061
Willy Tarreaubaaee002006-06-26 02:48:02 +020062// max # of matches per regexp
63#define MAX_MATCH 10
64
Willy Tarreaue5f20dc2006-12-03 15:21:35 +010065// max # of headers in one HTTP request or response
Willy Tarreauac1932d2011-10-24 19:14:41 +020066// By default, about 100 headers (+1 for the first line)
Willy Tarreaue5f20dc2006-12-03 15:21:35 +010067#ifndef MAX_HTTP_HDR
Willy Tarreauac1932d2011-10-24 19:14:41 +020068#define MAX_HTTP_HDR 101
Willy Tarreaue5f20dc2006-12-03 15:21:35 +010069#endif
70
Willy Tarreaubce70882009-09-07 11:51:47 +020071// max # of headers in history when looking for header #-X
72#ifndef MAX_HDR_HISTORY
73#define MAX_HDR_HISTORY 10
74#endif
75
Willy Tarreaub8949f12007-03-23 22:39:59 +010076// max # of loops we can perform around a read() which succeeds.
77// It's very frequent that the system returns a few TCP segments at a time.
78#ifndef MAX_READ_POLL_LOOPS
79#define MAX_READ_POLL_LOOPS 4
80#endif
81
Willy Tarreau6f4a82c2009-03-21 20:43:57 +010082// minimum number of bytes read at once above which we don't try to read
83// more, in order not to risk facing an EAGAIN. Most often, if we read
84// at least 10 kB, we can consider that the system has tried to read a
85// full buffer and got multiple segments (>1 MSS for jumbo frames, >7 MSS
86// for normal frames) did not bother truncating the last segment.
87#ifndef MIN_RECV_AT_ONCE_ENOUGH
88#define MIN_RECV_AT_ONCE_ENOUGH (7*1448)
89#endif
90
Willy Tarreau14acc702011-05-11 20:47:24 +020091// The minimum number of bytes to be forwarded that is worth trying to splice.
92// Below 4kB, it's not worth allocating pipes nor pretending to zero-copy.
93#ifndef MIN_SPLICE_FORWARD
94#define MIN_SPLICE_FORWARD 4096
95#endif
96
Willy Tarreau1db37712007-06-03 17:16:49 +020097// the max number of events returned in one call to poll/epoll. Too small a
98// value will cause lots of calls, and too high a value may cause high latency.
99#ifndef MAX_POLL_EVENTS
100#define MAX_POLL_EVENTS 200
101#endif
102
Willy Tarreaubaaee002006-06-26 02:48:02 +0200103// cookie delimitor in "prefix" mode. This character is inserted between the
104// persistence cookie and the original value. The '~' is allowed by RFC2965,
105// and should not be too common in server names.
106#ifndef COOKIE_DELIM
107#define COOKIE_DELIM '~'
108#endif
109
Willy Tarreaubca99692010-10-06 19:25:55 +0200110// this delimitor is used between a server's name and a last visit date in
111// cookies exchanged with the client.
112#ifndef COOKIE_DELIM_DATE
113#define COOKIE_DELIM_DATE '|'
114#endif
115
Willy Tarreaubaaee002006-06-26 02:48:02 +0200116#define CONN_RETRIES 3
117
118#define CHK_CONNTIME 2000
119#define DEF_CHKINTR 2000
120#define DEF_FALLTIME 3
121#define DEF_RISETIME 2
Willy Tarreaue9d87882010-01-27 11:28:42 +0100122#define DEF_CHECK_REQ "OPTIONS / HTTP/1.0\r\n"
Willy Tarreau23677902007-05-08 23:50:35 +0200123#define DEF_SMTP_CHECK_REQ "HELO localhost\r\n"
Gabor Lekenyb4c81e42010-09-29 18:17:05 +0200124#define DEF_LDAP_CHECK_REQ "\x30\x0c\x02\x01\x01\x60\x07\x02\x01\x03\x04\x00\x80\x00"
Hervé COMMOWICKec032d62011-08-05 16:23:48 +0200125#define DEF_REDIS_CHECK_REQ "*1\r\n$4\r\nPING\r\n"
Willy Tarreaubaaee002006-06-26 02:48:02 +0200126
Krzysztof Piotr Oledzki97f07b82009-12-15 22:31:24 +0100127#define DEF_HANA_ONERR HANA_ONERR_FAILCHK
128#define DEF_HANA_ERRLIMIT 10
129
Ross Westaf72a1d2008-08-03 10:51:45 +0200130// X-Forwarded-For header default
131#define DEF_XFORWARDFOR_HDR "X-Forwarded-For"
132
Maik Broemme2850cb42009-04-17 18:53:21 +0200133// X-Original-To header default
134#define DEF_XORIGINALTO_HDR "X-Original-To"
135
Willy Tarreaubaaee002006-06-26 02:48:02 +0200136/* Default connections limit.
137 *
138 * A system limit can be enforced at build time in order to avoid using haproxy
139 * beyond reasonable system limits. For this, just define SYSTEM_MAXCONN to the
140 * absolute limit accepted by the system. If the configuration specifies a
141 * higher value, it will be capped to SYSTEM_MAXCONN and a warning will be
142 * emitted. The only way to override this limit will be to set it via the
143 * command-line '-n' argument.
144 */
145#ifndef SYSTEM_MAXCONN
Willy Tarreauc9fe4562009-06-15 16:33:36 +0200146#ifndef DEFAULT_MAXCONN
Willy Tarreaubaaee002006-06-26 02:48:02 +0200147#define DEFAULT_MAXCONN 2000
Willy Tarreauc9fe4562009-06-15 16:33:36 +0200148#endif
Willy Tarreaubaaee002006-06-26 02:48:02 +0200149#else
Willy Tarreauc9fe4562009-06-15 16:33:36 +0200150#undef DEFAULT_MAXCONN
Willy Tarreaubaaee002006-06-26 02:48:02 +0200151#define DEFAULT_MAXCONN SYSTEM_MAXCONN
152#endif
153
Willy Tarreau2c43a1e2007-10-14 23:05:39 +0200154/* Minimum check interval for spread health checks. Servers with intervals
155 * greater than or equal to this value will have their checks spread apart
156 * and will be considered when searching the minimal interval.
157 * Others will be ignored for the minimal interval and will have their checks
158 * scheduled on a different basis.
159 */
160#ifndef SRV_CHK_INTER_THRES
161#define SRV_CHK_INTER_THRES 1000
162#endif
163
Krzysztof Oledzkid9db9272007-10-15 10:05:11 +0200164/* Specifies the string used to report the version and release date on the
165 * statistics page. May be defined to the empty string ("") to permanently
166 * disable the feature.
167 */
168#ifndef STATS_VERSION_STRING
169#define STATS_VERSION_STRING " version " HAPROXY_VERSION ", released " HAPROXY_DATE
170#endif
171
Willy Tarreau8f38bd02009-05-10 08:53:33 +0200172/* Maximum signal queue size, and also number of different signals we can
173 * handle.
174 */
175#ifndef MAX_SIGNAL
176#define MAX_SIGNAL 256
177#endif
178
Willy Tarreau3ad6a762009-08-16 10:08:02 +0200179/* Maximum host name length */
180#ifndef MAX_HOSTNAME_LEN
181#define MAX_HOSTNAME_LEN 32
182#endif
183
Krzysztof Piotr Oledzkif7089f52009-10-10 21:06:49 +0200184/* Maximum health check description length */
185#ifndef HCHK_DESC_LEN
186#define HCHK_DESC_LEN 128
187#endif
188
Emeric Brun76d88952012-10-05 15:47:31 +0200189/* ciphers used as defaults on connect */
190#ifndef CONNECT_DEFAULT_CIPHERS
191#define CONNECT_DEFAULT_CIPHERS NULL
192#endif
193
194/* ciphers used as defaults on listeners */
195#ifndef LISTEN_DEFAULT_CIPHERS
196#define LISTEN_DEFAULT_CIPHERS NULL
197#endif
198
Emeric Brun6924ef82013-03-06 14:08:53 +0100199/* named curve used as defaults for ECDHE ciphers */
200#ifndef ECDHE_DEFAULT_CURVE
201#define ECDHE_DEFAULT_CURVE "prime256v1"
202#endif
203
Emeric Brun46635772012-11-14 11:32:56 +0100204/* ssl cache size */
205#ifndef SSLCACHESIZE
206#define SSLCACHESIZE 20000
207#endif
208
Willy Tarreau2dd0d472006-06-29 17:53:05 +0200209#endif /* _COMMON_DEFAULTS_H */