Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1 | /* |
Willy Tarreau | deb9ed8 | 2010-01-03 21:03:22 +0100 | [diff] [blame] | 2 | * 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 Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 21 | |
Willy Tarreau | 2dd0d47 | 2006-06-29 17:53:05 +0200 | [diff] [blame] | 22 | #ifndef _COMMON_DEFAULTS_H |
| 23 | #define _COMMON_DEFAULTS_H |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 24 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 25 | /* |
| 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 Tarreau | bf43f6e | 2013-06-03 15:52:52 +0200 | [diff] [blame] | 43 | #ifndef REQURI_LEN |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 44 | #define REQURI_LEN 1024 |
Willy Tarreau | bf43f6e | 2013-06-03 15:52:52 +0200 | [diff] [blame] | 45 | #endif |
| 46 | |
| 47 | #ifndef CAPTURE_LEN |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 48 | #define CAPTURE_LEN 64 |
Willy Tarreau | bf43f6e | 2013-06-03 15:52:52 +0200 | [diff] [blame] | 49 | #endif |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 50 | |
Krzysztof Piotr Oledzki | e6bbd74 | 2007-11-01 00:33:12 +0100 | [diff] [blame] | 51 | // maximum line size when parsing config |
| 52 | #ifndef LINESIZE |
| 53 | #define LINESIZE 2048 |
| 54 | #endif |
| 55 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 56 | // max # args on a configuration line |
Krzysztof Piotr Oledzki | e6bbd74 | 2007-11-01 00:33:12 +0100 | [diff] [blame] | 57 | #define MAX_LINE_ARGS 64 |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 58 | |
Willy Tarreau | 5ca791d | 2009-08-16 19:06:42 +0200 | [diff] [blame] | 59 | // max # args on a stats socket |
Willy Tarreau | 47060b6 | 2013-08-01 21:11:42 +0200 | [diff] [blame] | 60 | // This should cover at least 5 + twice the # of data_types |
| 61 | #define MAX_STATS_ARGS 64 |
Krzysztof Piotr Oledzki | 2c6962c | 2008-03-02 02:42:14 +0100 | [diff] [blame] | 62 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 63 | // max # of matches per regexp |
| 64 | #define MAX_MATCH 10 |
| 65 | |
Willy Tarreau | e5f20dc | 2006-12-03 15:21:35 +0100 | [diff] [blame] | 66 | // max # of headers in one HTTP request or response |
Willy Tarreau | ac1932d | 2011-10-24 19:14:41 +0200 | [diff] [blame] | 67 | // By default, about 100 headers (+1 for the first line) |
Willy Tarreau | e5f20dc | 2006-12-03 15:21:35 +0100 | [diff] [blame] | 68 | #ifndef MAX_HTTP_HDR |
Willy Tarreau | ac1932d | 2011-10-24 19:14:41 +0200 | [diff] [blame] | 69 | #define MAX_HTTP_HDR 101 |
Willy Tarreau | e5f20dc | 2006-12-03 15:21:35 +0100 | [diff] [blame] | 70 | #endif |
| 71 | |
Willy Tarreau | bce7088 | 2009-09-07 11:51:47 +0200 | [diff] [blame] | 72 | // max # of headers in history when looking for header #-X |
| 73 | #ifndef MAX_HDR_HISTORY |
| 74 | #define MAX_HDR_HISTORY 10 |
| 75 | #endif |
| 76 | |
Willy Tarreau | b4c8493 | 2013-07-23 19:15:30 +0200 | [diff] [blame] | 77 | // max # of stick counters per session (at least 3 for sc0..sc2) |
| 78 | // Some changes are needed in TCP_ACT_TRK_SC* and SN_BE_TRACK_SC* if more |
| 79 | // values are required. |
| 80 | #ifndef MAX_SESS_STKCTR |
| 81 | #define MAX_SESS_STKCTR 3 |
| 82 | #endif |
| 83 | |
Willy Tarreau | b8949f1 | 2007-03-23 22:39:59 +0100 | [diff] [blame] | 84 | // max # of loops we can perform around a read() which succeeds. |
| 85 | // It's very frequent that the system returns a few TCP segments at a time. |
| 86 | #ifndef MAX_READ_POLL_LOOPS |
| 87 | #define MAX_READ_POLL_LOOPS 4 |
| 88 | #endif |
| 89 | |
Willy Tarreau | 6f4a82c | 2009-03-21 20:43:57 +0100 | [diff] [blame] | 90 | // minimum number of bytes read at once above which we don't try to read |
| 91 | // more, in order not to risk facing an EAGAIN. Most often, if we read |
| 92 | // at least 10 kB, we can consider that the system has tried to read a |
| 93 | // full buffer and got multiple segments (>1 MSS for jumbo frames, >7 MSS |
| 94 | // for normal frames) did not bother truncating the last segment. |
| 95 | #ifndef MIN_RECV_AT_ONCE_ENOUGH |
| 96 | #define MIN_RECV_AT_ONCE_ENOUGH (7*1448) |
| 97 | #endif |
| 98 | |
Willy Tarreau | 14acc70 | 2011-05-11 20:47:24 +0200 | [diff] [blame] | 99 | // The minimum number of bytes to be forwarded that is worth trying to splice. |
| 100 | // Below 4kB, it's not worth allocating pipes nor pretending to zero-copy. |
| 101 | #ifndef MIN_SPLICE_FORWARD |
| 102 | #define MIN_SPLICE_FORWARD 4096 |
| 103 | #endif |
| 104 | |
Willy Tarreau | 1db3771 | 2007-06-03 17:16:49 +0200 | [diff] [blame] | 105 | // the max number of events returned in one call to poll/epoll. Too small a |
| 106 | // value will cause lots of calls, and too high a value may cause high latency. |
| 107 | #ifndef MAX_POLL_EVENTS |
| 108 | #define MAX_POLL_EVENTS 200 |
| 109 | #endif |
| 110 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 111 | // cookie delimitor in "prefix" mode. This character is inserted between the |
| 112 | // persistence cookie and the original value. The '~' is allowed by RFC2965, |
| 113 | // and should not be too common in server names. |
| 114 | #ifndef COOKIE_DELIM |
| 115 | #define COOKIE_DELIM '~' |
| 116 | #endif |
| 117 | |
Willy Tarreau | bca9969 | 2010-10-06 19:25:55 +0200 | [diff] [blame] | 118 | // this delimitor is used between a server's name and a last visit date in |
| 119 | // cookies exchanged with the client. |
| 120 | #ifndef COOKIE_DELIM_DATE |
| 121 | #define COOKIE_DELIM_DATE '|' |
| 122 | #endif |
| 123 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 124 | #define CONN_RETRIES 3 |
| 125 | |
| 126 | #define CHK_CONNTIME 2000 |
| 127 | #define DEF_CHKINTR 2000 |
| 128 | #define DEF_FALLTIME 3 |
| 129 | #define DEF_RISETIME 2 |
Willy Tarreau | e9d8788 | 2010-01-27 11:28:42 +0100 | [diff] [blame] | 130 | #define DEF_CHECK_REQ "OPTIONS / HTTP/1.0\r\n" |
Willy Tarreau | 2367790 | 2007-05-08 23:50:35 +0200 | [diff] [blame] | 131 | #define DEF_SMTP_CHECK_REQ "HELO localhost\r\n" |
Gabor Lekeny | b4c81e4 | 2010-09-29 18:17:05 +0200 | [diff] [blame] | 132 | #define DEF_LDAP_CHECK_REQ "\x30\x0c\x02\x01\x01\x60\x07\x02\x01\x03\x04\x00\x80\x00" |
Hervé COMMOWICK | ec032d6 | 2011-08-05 16:23:48 +0200 | [diff] [blame] | 133 | #define DEF_REDIS_CHECK_REQ "*1\r\n$4\r\nPING\r\n" |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 134 | |
Krzysztof Piotr Oledzki | 97f07b8 | 2009-12-15 22:31:24 +0100 | [diff] [blame] | 135 | #define DEF_HANA_ONERR HANA_ONERR_FAILCHK |
| 136 | #define DEF_HANA_ERRLIMIT 10 |
| 137 | |
Ross West | af72a1d | 2008-08-03 10:51:45 +0200 | [diff] [blame] | 138 | // X-Forwarded-For header default |
| 139 | #define DEF_XFORWARDFOR_HDR "X-Forwarded-For" |
| 140 | |
Maik Broemme | 2850cb4 | 2009-04-17 18:53:21 +0200 | [diff] [blame] | 141 | // X-Original-To header default |
| 142 | #define DEF_XORIGINALTO_HDR "X-Original-To" |
| 143 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 144 | /* Default connections limit. |
| 145 | * |
| 146 | * A system limit can be enforced at build time in order to avoid using haproxy |
| 147 | * beyond reasonable system limits. For this, just define SYSTEM_MAXCONN to the |
| 148 | * absolute limit accepted by the system. If the configuration specifies a |
| 149 | * higher value, it will be capped to SYSTEM_MAXCONN and a warning will be |
| 150 | * emitted. The only way to override this limit will be to set it via the |
| 151 | * command-line '-n' argument. |
| 152 | */ |
| 153 | #ifndef SYSTEM_MAXCONN |
Willy Tarreau | c9fe456 | 2009-06-15 16:33:36 +0200 | [diff] [blame] | 154 | #ifndef DEFAULT_MAXCONN |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 155 | #define DEFAULT_MAXCONN 2000 |
Willy Tarreau | c9fe456 | 2009-06-15 16:33:36 +0200 | [diff] [blame] | 156 | #endif |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 157 | #else |
Willy Tarreau | c9fe456 | 2009-06-15 16:33:36 +0200 | [diff] [blame] | 158 | #undef DEFAULT_MAXCONN |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 159 | #define DEFAULT_MAXCONN SYSTEM_MAXCONN |
| 160 | #endif |
| 161 | |
Willy Tarreau | 2c43a1e | 2007-10-14 23:05:39 +0200 | [diff] [blame] | 162 | /* Minimum check interval for spread health checks. Servers with intervals |
| 163 | * greater than or equal to this value will have their checks spread apart |
| 164 | * and will be considered when searching the minimal interval. |
| 165 | * Others will be ignored for the minimal interval and will have their checks |
| 166 | * scheduled on a different basis. |
| 167 | */ |
| 168 | #ifndef SRV_CHK_INTER_THRES |
| 169 | #define SRV_CHK_INTER_THRES 1000 |
| 170 | #endif |
| 171 | |
Krzysztof Oledzki | d9db927 | 2007-10-15 10:05:11 +0200 | [diff] [blame] | 172 | /* Specifies the string used to report the version and release date on the |
| 173 | * statistics page. May be defined to the empty string ("") to permanently |
| 174 | * disable the feature. |
| 175 | */ |
| 176 | #ifndef STATS_VERSION_STRING |
| 177 | #define STATS_VERSION_STRING " version " HAPROXY_VERSION ", released " HAPROXY_DATE |
| 178 | #endif |
| 179 | |
Willy Tarreau | 8f38bd0 | 2009-05-10 08:53:33 +0200 | [diff] [blame] | 180 | /* Maximum signal queue size, and also number of different signals we can |
| 181 | * handle. |
| 182 | */ |
| 183 | #ifndef MAX_SIGNAL |
| 184 | #define MAX_SIGNAL 256 |
| 185 | #endif |
| 186 | |
Willy Tarreau | 3ad6a76 | 2009-08-16 10:08:02 +0200 | [diff] [blame] | 187 | /* Maximum host name length */ |
| 188 | #ifndef MAX_HOSTNAME_LEN |
| 189 | #define MAX_HOSTNAME_LEN 32 |
| 190 | #endif |
| 191 | |
Krzysztof Piotr Oledzki | f7089f5 | 2009-10-10 21:06:49 +0200 | [diff] [blame] | 192 | /* Maximum health check description length */ |
| 193 | #ifndef HCHK_DESC_LEN |
| 194 | #define HCHK_DESC_LEN 128 |
| 195 | #endif |
| 196 | |
Emeric Brun | 76d8895 | 2012-10-05 15:47:31 +0200 | [diff] [blame] | 197 | /* ciphers used as defaults on connect */ |
| 198 | #ifndef CONNECT_DEFAULT_CIPHERS |
| 199 | #define CONNECT_DEFAULT_CIPHERS NULL |
| 200 | #endif |
| 201 | |
| 202 | /* ciphers used as defaults on listeners */ |
| 203 | #ifndef LISTEN_DEFAULT_CIPHERS |
| 204 | #define LISTEN_DEFAULT_CIPHERS NULL |
| 205 | #endif |
| 206 | |
Emeric Brun | 6924ef8 | 2013-03-06 14:08:53 +0100 | [diff] [blame] | 207 | /* named curve used as defaults for ECDHE ciphers */ |
| 208 | #ifndef ECDHE_DEFAULT_CURVE |
| 209 | #define ECDHE_DEFAULT_CURVE "prime256v1" |
| 210 | #endif |
| 211 | |
Emeric Brun | 4663577 | 2012-11-14 11:32:56 +0100 | [diff] [blame] | 212 | /* ssl cache size */ |
| 213 | #ifndef SSLCACHESIZE |
| 214 | #define SSLCACHESIZE 20000 |
| 215 | #endif |
| 216 | |
Willy Tarreau | 2dd0d47 | 2006-06-29 17:53:05 +0200 | [diff] [blame] | 217 | #endif /* _COMMON_DEFAULTS_H */ |