Willy Tarreau | b1a34b6 | 2010-05-09 22:37:12 +0200 | [diff] [blame] | 1 | ---------------------- |
| 2 | HAProxy how-to |
| 3 | ---------------------- |
Willy Tarreau | b306650 | 2017-11-26 19:50:17 +0100 | [diff] [blame] | 4 | version 1.9 |
Willy Tarreau | b1a34b6 | 2010-05-09 22:37:12 +0200 | [diff] [blame] | 5 | willy tarreau |
Willy Tarreau | 9607949 | 2018-11-11 10:43:39 +0100 | [diff] [blame] | 6 | 2018/11/11 |
willy tarreau | 7834533 | 2005-12-18 01:33:16 +0100 | [diff] [blame] | 7 | |
| 8 | |
Willy Tarreau | b1a34b6 | 2010-05-09 22:37:12 +0200 | [diff] [blame] | 9 | 1) How to build it |
| 10 | ------------------ |
| 11 | |
Willy Tarreau | b306650 | 2017-11-26 19:50:17 +0100 | [diff] [blame] | 12 | This is a development version, so it is expected to break from time to time, |
| 13 | to add and remove features without prior notification and it should not be used |
| 14 | in production. If you are not used to build from sources or if you are not used |
| 15 | to follow updates then it is recommended that instead you use the packages provided |
| 16 | by your software vendor or Linux distribution. Most of them are taking this task |
Willy Tarreau | 844028b | 2015-10-13 18:52:22 +0200 | [diff] [blame] | 17 | seriously and are doing a good job at backporting important fixes. If for any |
| 18 | reason you'd prefer a different version than the one packaged for your system, |
| 19 | you want to be certain to have all the fixes or to get some commercial support, |
| 20 | other choices are available at : |
Willy Tarreau | 869f351 | 2014-06-19 15:26:32 +0200 | [diff] [blame] | 21 | |
| 22 | http://www.haproxy.com/ |
| 23 | |
willy tarreau | 7834533 | 2005-12-18 01:33:16 +0100 | [diff] [blame] | 24 | To build haproxy, you will need : |
Willy Tarreau | b1a34b6 | 2010-05-09 22:37:12 +0200 | [diff] [blame] | 25 | - GNU make. Neither Solaris nor OpenBSD's make work with the GNU Makefile. |
Willy Tarreau | 3543cdb | 2014-05-10 09:12:46 +0200 | [diff] [blame] | 26 | If you get many syntax errors when running "make", you may want to retry |
| 27 | with "gmake" which is the name commonly used for GNU make on BSD systems. |
Willy Tarreau | 869f351 | 2014-06-19 15:26:32 +0200 | [diff] [blame] | 28 | - GCC between 2.95 and 4.8. Others may work, but not tested. |
willy tarreau | 7834533 | 2005-12-18 01:33:16 +0100 | [diff] [blame] | 29 | - GNU ld |
| 30 | |
| 31 | Also, you might want to build with libpcre support, which will provide a very |
Willy Tarreau | b1a34b6 | 2010-05-09 22:37:12 +0200 | [diff] [blame] | 32 | efficient regex implementation and will also fix some badness on Solaris' one. |
willy tarreau | 7834533 | 2005-12-18 01:33:16 +0100 | [diff] [blame] | 33 | |
| 34 | To build haproxy, you have to choose your target OS amongst the following ones |
| 35 | and assign it to the TARGET variable : |
| 36 | |
Willy Tarreau | 83b30c1 | 2008-05-25 10:32:50 +0200 | [diff] [blame] | 37 | - linux22 for Linux 2.2 |
| 38 | - linux24 for Linux 2.4 and above (default) |
| 39 | - linux24e for Linux 2.4 with support for a working epoll (> 0.21) |
Willy Tarreau | 83b30c1 | 2008-05-25 10:32:50 +0200 | [diff] [blame] | 40 | - linux26 for Linux 2.6 and above |
Willy Tarreau | 869f351 | 2014-06-19 15:26:32 +0200 | [diff] [blame] | 41 | - linux2628 for Linux 2.6.28, 3.x, and above (enables splice and tproxy) |
Willy Tarreau | 83b30c1 | 2008-05-25 10:32:50 +0200 | [diff] [blame] | 42 | - solaris for Solaris 8 or 10 (others untested) |
Willy Tarreau | 869f351 | 2014-06-19 15:26:32 +0200 | [diff] [blame] | 43 | - freebsd for FreeBSD 5 to 10 (others untested) |
Willy Tarreau | 844028b | 2015-10-13 18:52:22 +0200 | [diff] [blame] | 44 | - netbsd for NetBSD |
Willy Tarreau | 8624cab | 2013-04-02 08:17:43 +0200 | [diff] [blame] | 45 | - osx for Mac OS/X |
Daniel Jakots | 9705ba2 | 2016-09-27 19:22:21 +0200 | [diff] [blame] | 46 | - openbsd for OpenBSD 5.7 and above |
Willy Tarreau | 50abe30 | 2014-04-02 20:44:43 +0200 | [diff] [blame] | 47 | - aix51 for AIX 5.1 |
Willy Tarreau | 7dec965 | 2012-06-06 16:15:03 +0200 | [diff] [blame] | 48 | - aix52 for AIX 5.2 |
Yitzhak Sapir | 3208731 | 2009-06-14 18:27:54 +0200 | [diff] [blame] | 49 | - cygwin for Cygwin |
Jerome Duval | 38932c3 | 2015-10-19 23:01:16 +0000 | [diff] [blame] | 50 | - haiku for Haiku |
Willy Tarreau | 869f351 | 2014-06-19 15:26:32 +0200 | [diff] [blame] | 51 | - generic for any other OS or version. |
Willy Tarreau | 83b30c1 | 2008-05-25 10:32:50 +0200 | [diff] [blame] | 52 | - custom to manually adjust every setting |
willy tarreau | 7834533 | 2005-12-18 01:33:16 +0100 | [diff] [blame] | 53 | |
| 54 | You may also choose your CPU to benefit from some optimizations. This is |
| 55 | particularly important on UltraSparc machines. For this, you can assign |
| 56 | one of the following choices to the CPU variable : |
| 57 | |
| 58 | - i686 for intel PentiumPro, Pentium 2 and above, AMD Athlon |
| 59 | - i586 for intel Pentium, AMD K6, VIA C3. |
| 60 | - ultrasparc : Sun UltraSparc I/II/III/IV processor |
Willy Tarreau | 817dad5 | 2014-07-10 20:24:25 +0200 | [diff] [blame] | 61 | - native : use the build machine's specific processor optimizations. Use with |
| 62 | extreme care, and never in virtualized environments (known to break). |
| 63 | - generic : any other processor or no CPU-specific optimization. (default) |
willy tarreau | 7834533 | 2005-12-18 01:33:16 +0100 | [diff] [blame] | 64 | |
Willy Tarreau | 83b30c1 | 2008-05-25 10:32:50 +0200 | [diff] [blame] | 65 | Alternatively, you may just set the CPU_CFLAGS value to the optimal GCC options |
| 66 | for your platform. |
| 67 | |
Willy Tarreau | ef7341d | 2009-04-11 19:45:50 +0200 | [diff] [blame] | 68 | You may want to build specific target binaries which do not match your native |
| 69 | compiler's target. This is particularly true on 64-bit systems when you want |
| 70 | to build a 32-bit binary. Use the ARCH variable for this purpose. Right now |
Willy Tarreau | a5899aa | 2010-11-28 07:41:00 +0100 | [diff] [blame] | 71 | it only knows about a few x86 variants (i386,i486,i586,i686,x86_64), two |
| 72 | generic ones (32,64) and sets -m32/-m64 as well as -march=<arch> accordingly. |
Willy Tarreau | ef7341d | 2009-04-11 19:45:50 +0200 | [diff] [blame] | 73 | |
willy tarreau | 7834533 | 2005-12-18 01:33:16 +0100 | [diff] [blame] | 74 | If your system supports PCRE (Perl Compatible Regular Expressions), then you |
| 75 | really should build with libpcre which is between 2 and 10 times faster than |
| 76 | other libc implementations. Regex are used for header processing (deletion, |
| 77 | rewriting, allow, deny). The only inconvenient of libpcre is that it is not |
| 78 | yet widely spread, so if you build for other systems, you might get into |
| 79 | trouble if they don't have the dynamic library. In this situation, you should |
| 80 | statically link libpcre into haproxy so that it will not be necessary to |
Willy Tarreau | 83b30c1 | 2008-05-25 10:32:50 +0200 | [diff] [blame] | 81 | install it on target systems. Available build options for PCRE are : |
willy tarreau | 7834533 | 2005-12-18 01:33:16 +0100 | [diff] [blame] | 82 | |
Willy Tarreau | 83b30c1 | 2008-05-25 10:32:50 +0200 | [diff] [blame] | 83 | - USE_PCRE=1 to use libpcre, in whatever form is available on your system |
willy tarreau | 7834533 | 2005-12-18 01:33:16 +0100 | [diff] [blame] | 84 | (shared or static) |
| 85 | |
Willy Tarreau | 83b30c1 | 2008-05-25 10:32:50 +0200 | [diff] [blame] | 86 | - USE_STATIC_PCRE=1 to use a static version of libpcre even if the dynamic |
| 87 | one is available. This will enhance portability. |
| 88 | |
Willy Tarreau | 663148c | 2012-12-12 00:38:22 +0100 | [diff] [blame] | 89 | - with no option, use your OS libc's standard regex implementation (default). |
Willy Tarreau | 83b30c1 | 2008-05-25 10:32:50 +0200 | [diff] [blame] | 90 | Warning! group references on Solaris seem broken. Use static-pcre whenever |
| 91 | possible. |
willy tarreau | 7834533 | 2005-12-18 01:33:16 +0100 | [diff] [blame] | 92 | |
Willy Tarreau | a8fc8a2 | 2015-09-28 22:36:21 +0200 | [diff] [blame] | 93 | If your system doesn't provide PCRE, you are encouraged to download it from |
| 94 | http://www.pcre.org/ and build it yourself, it's fast and easy. |
| 95 | |
Willy Tarreau | 64bc40b | 2011-03-23 20:00:53 +0100 | [diff] [blame] | 96 | Recent systems can resolve IPv6 host names using getaddrinfo(). This primitive |
| 97 | is not present in all libcs and does not work in all of them either. Support in |
| 98 | glibc was broken before 2.3. Some embedded libs may not properly work either, |
| 99 | thus, support is disabled by default, meaning that some host names which only |
| 100 | resolve as IPv6 addresses will not resolve and configs might emit an error |
| 101 | during parsing. If you know that your OS libc has reliable support for |
| 102 | getaddrinfo(), you can add USE_GETADDRINFO=1 on the make command line to enable |
| 103 | it. This is the recommended option for most Linux distro packagers since it's |
| 104 | working fine on all recent mainstream distros. It is automatically enabled on |
| 105 | Solaris 8 and above, as it's known to work. |
| 106 | |
Willy Tarreau | 3543cdb | 2014-05-10 09:12:46 +0200 | [diff] [blame] | 107 | It is possible to add native support for SSL using the GNU makefile, by passing |
| 108 | "USE_OPENSSL=1" on the make command line. The libssl and libcrypto will |
| 109 | automatically be linked with haproxy. Some systems also require libz, so if the |
| 110 | build fails due to missing symbols such as deflateInit(), then try again with |
| 111 | "ADDLIB=-lz". |
Willy Tarreau | d450881 | 2012-09-10 09:07:41 +0200 | [diff] [blame] | 112 | |
Willy Tarreau | a8fc8a2 | 2015-09-28 22:36:21 +0200 | [diff] [blame] | 113 | Your are strongly encouraged to always use an up-to-date version of OpenSSL, as |
| 114 | found on https://www.openssl.org/ as vulnerabilities are occasionally found and |
| 115 | you don't want them on your systems. HAProxy is known to build correctly on all |
Willy Tarreau | 7ab1686 | 2017-07-18 06:58:16 +0200 | [diff] [blame] | 116 | currently supported branches (0.9.8, 1.0.0, 1.0.1, 1.0.2 and 1.1.0 at the time |
| 117 | of writing). Branch 1.0.2 is currently recommended for the best combination of |
| 118 | features and stability. Asynchronous engines require OpenSSL 1.1.0 though. It's |
Joseph Herlant | e07bc14 | 2018-11-09 17:44:10 -0800 | [diff] [blame] | 119 | worth mentioning that some OpenSSL derivatives are also reported to work but |
Willy Tarreau | 7ab1686 | 2017-07-18 06:58:16 +0200 | [diff] [blame] | 120 | may occasionally break. Patches to fix them are welcome but please read the |
| 121 | CONTRIBUTING file first. |
Willy Tarreau | a8fc8a2 | 2015-09-28 22:36:21 +0200 | [diff] [blame] | 122 | |
Lukas Tribus | 3fe9f1e | 2013-05-19 16:28:17 +0200 | [diff] [blame] | 123 | To link OpenSSL statically against haproxy, build OpenSSL with the no-shared |
| 124 | keyword and install it to a local directory, so your system is not affected : |
| 125 | |
| 126 | $ export STATICLIBSSL=/tmp/staticlibssl |
| 127 | $ ./config --prefix=$STATICLIBSSL no-shared |
| 128 | $ make && make install_sw |
| 129 | |
Lukas Tribus | 130ddf7 | 2013-10-01 00:28:03 +0200 | [diff] [blame] | 130 | When building haproxy, pass that path via SSL_INC and SSL_LIB to make and |
| 131 | include additional libs with ADDLIB if needed (in this case for example libdl): |
Willy Tarreau | 3543cdb | 2014-05-10 09:12:46 +0200 | [diff] [blame] | 132 | |
Lukas Tribus | 130ddf7 | 2013-10-01 00:28:03 +0200 | [diff] [blame] | 133 | $ make TARGET=linux26 USE_OPENSSL=1 SSL_INC=$STATICLIBSSL/include SSL_LIB=$STATICLIBSSL/lib ADDLIB=-ldl |
Lukas Tribus | 3fe9f1e | 2013-05-19 16:28:17 +0200 | [diff] [blame] | 134 | |
Willy Tarreau | a8fc8a2 | 2015-09-28 22:36:21 +0200 | [diff] [blame] | 135 | It is also possible to include native support for zlib to benefit from HTTP |
William Lallemand | 82fe75c | 2012-10-23 10:25:10 +0200 | [diff] [blame] | 136 | compression. For this, pass "USE_ZLIB=1" on the "make" command line and ensure |
Willy Tarreau | 418b8c0 | 2015-03-29 03:32:06 +0200 | [diff] [blame] | 137 | that zlib is present on the system. Alternatively it is possible to use libslz |
| 138 | for a faster, memory less, but slightly less efficient compression, by passing |
| 139 | "USE_SLZ=1". |
William Lallemand | 82fe75c | 2012-10-23 10:25:10 +0200 | [diff] [blame] | 140 | |
Willy Tarreau | a8fc8a2 | 2015-09-28 22:36:21 +0200 | [diff] [blame] | 141 | Zlib is commonly found on most systems, otherwise updates can be retrieved from |
| 142 | http://www.zlib.net/. It is easy and fast to build. Libslz can be downloaded |
| 143 | from http://1wt.eu/projects/libslz/ and is even easier to build. |
| 144 | |
willy tarreau | 7834533 | 2005-12-18 01:33:16 +0100 | [diff] [blame] | 145 | By default, the DEBUG variable is set to '-g' to enable debug symbols. It is |
| 146 | not wise to disable it on uncommon systems, because it's often the only way to |
| 147 | get a complete core when you need one. Otherwise, you can set DEBUG to '-s' to |
| 148 | strip the binary. |
| 149 | |
| 150 | For example, I use this to build for Solaris 8 : |
| 151 | |
Willy Tarreau | 83b30c1 | 2008-05-25 10:32:50 +0200 | [diff] [blame] | 152 | $ make TARGET=solaris CPU=ultrasparc USE_STATIC_PCRE=1 |
willy tarreau | 7834533 | 2005-12-18 01:33:16 +0100 | [diff] [blame] | 153 | |
Willy Tarreau | 83b30c1 | 2008-05-25 10:32:50 +0200 | [diff] [blame] | 154 | And I build it this way on OpenBSD or FreeBSD : |
willy tarreau | d38e72d | 2006-03-19 20:56:52 +0100 | [diff] [blame] | 155 | |
Willy Tarreau | 3543cdb | 2014-05-10 09:12:46 +0200 | [diff] [blame] | 156 | $ gmake TARGET=freebsd USE_PCRE=1 USE_OPENSSL=1 USE_ZLIB=1 |
willy tarreau | d38e72d | 2006-03-19 20:56:52 +0100 | [diff] [blame] | 157 | |
Willy Tarreau | 663148c | 2012-12-12 00:38:22 +0100 | [diff] [blame] | 158 | And on a classic Linux with SSL and ZLIB support (eg: Red Hat 5.x) : |
| 159 | |
Willy Tarreau | 817dad5 | 2014-07-10 20:24:25 +0200 | [diff] [blame] | 160 | $ make TARGET=linux26 USE_PCRE=1 USE_OPENSSL=1 USE_ZLIB=1 |
Willy Tarreau | 663148c | 2012-12-12 00:38:22 +0100 | [diff] [blame] | 161 | |
| 162 | And on a recent Linux >= 2.6.28 with SSL and ZLIB support : |
Willy Tarreau | d450881 | 2012-09-10 09:07:41 +0200 | [diff] [blame] | 163 | |
Willy Tarreau | 817dad5 | 2014-07-10 20:24:25 +0200 | [diff] [blame] | 164 | $ make TARGET=linux2628 USE_PCRE=1 USE_OPENSSL=1 USE_ZLIB=1 |
Willy Tarreau | d450881 | 2012-09-10 09:07:41 +0200 | [diff] [blame] | 165 | |
William Lallemand | 82fe75c | 2012-10-23 10:25:10 +0200 | [diff] [blame] | 166 | In order to build a 32-bit binary on an x86_64 Linux system with SSL support |
| 167 | without support for compression but when OpenSSL requires ZLIB anyway : |
Willy Tarreau | ef7341d | 2009-04-11 19:45:50 +0200 | [diff] [blame] | 168 | |
Willy Tarreau | d450881 | 2012-09-10 09:07:41 +0200 | [diff] [blame] | 169 | $ make TARGET=linux26 ARCH=i386 USE_OPENSSL=1 ADDLIB=-lz |
Willy Tarreau | ef7341d | 2009-04-11 19:45:50 +0200 | [diff] [blame] | 170 | |
Willy Tarreau | b1efede | 2014-05-09 00:44:48 +0200 | [diff] [blame] | 171 | The SSL stack supports session cache synchronization between all running |
| 172 | processes. This involves some atomic operations and synchronization operations |
| 173 | which come in multiple flavors depending on the system and architecture : |
| 174 | |
| 175 | Atomic operations : |
| 176 | - internal assembler versions for x86/x86_64 architectures |
| 177 | |
| 178 | - gcc builtins for other architectures. Some architectures might not |
| 179 | be fully supported or might require a more recent version of gcc. |
| 180 | If your architecture is not supported, you willy have to either use |
| 181 | pthread if supported, or to disable the shared cache. |
| 182 | |
| 183 | - pthread (posix threads). Pthreads are very common but inter-process |
| 184 | support is not that common, and some older operating systems did not |
| 185 | report an error when enabling multi-process mode, so they used to |
| 186 | silently fail, possibly causing crashes. Linux's implementation is |
| 187 | fine. OpenBSD doesn't support them and doesn't build. FreeBSD 9 builds |
| 188 | and reports an error at runtime, while certain older versions might |
| 189 | silently fail. Pthreads are enabled using USE_PTHREAD_PSHARED=1. |
| 190 | |
| 191 | Synchronization operations : |
Joseph Herlant | e07bc14 | 2018-11-09 17:44:10 -0800 | [diff] [blame] | 192 | - internal spinlock : this mode is OS-independent, light but will not |
Willy Tarreau | b1efede | 2014-05-09 00:44:48 +0200 | [diff] [blame] | 193 | scale well to many processes. However, accesses to the session cache |
| 194 | are rare enough that this mode could certainly always be used. This |
| 195 | is the default mode. |
| 196 | |
| 197 | - Futexes, which are Linux-specific highly scalable light weight mutexes |
| 198 | implemented in user-space with some limited assistance from the kernel. |
| 199 | This is the default on Linux 2.6 and above and is enabled by passing |
| 200 | USE_FUTEX=1 |
| 201 | |
| 202 | - pthread (posix threads). See above. |
| 203 | |
| 204 | If none of these mechanisms is supported by your platform, you may need to |
| 205 | build with USE_PRIVATE_CACHE=1 to totally disable SSL cache sharing. Then |
| 206 | it is better not to run SSL on multiple processes. |
| 207 | |
willy tarreau | 7834533 | 2005-12-18 01:33:16 +0100 | [diff] [blame] | 208 | If you need to pass other defines, includes, libraries, etc... then please |
| 209 | check the Makefile to see which ones will be available in your case, and |
Willy Tarreau | 3543cdb | 2014-05-10 09:12:46 +0200 | [diff] [blame] | 210 | use the USE_* variables in the Makefile. |
willy tarreau | 7834533 | 2005-12-18 01:33:16 +0100 | [diff] [blame] | 211 | |
Willy Tarreau | 97ec969 | 2010-01-28 20:52:05 +0100 | [diff] [blame] | 212 | AIX 5.3 is known to work with the generic target. However, for the binary to |
| 213 | also run on 5.2 or earlier, you need to build with DEFINE="-D_MSGQSUPPORT", |
Willy Tarreau | 869f351 | 2014-06-19 15:26:32 +0200 | [diff] [blame] | 214 | otherwise __fd_select() will be used while not being present in the libc, but |
| 215 | this is easily addressed using the "aix52" target. If you get build errors |
| 216 | because of strange symbols or section mismatches, simply remove -g from |
| 217 | DEBUG_CFLAGS. |
Willy Tarreau | 97ec969 | 2010-01-28 20:52:05 +0100 | [diff] [blame] | 218 | |
Willy Tarreau | 32e65ef | 2013-04-02 08:14:29 +0200 | [diff] [blame] | 219 | You can easily define your own target with the GNU Makefile. Unknown targets |
| 220 | are processed with no default option except USE_POLL=default. So you can very |
| 221 | well use that property to define your own set of options. USE_POLL can even be |
| 222 | disabled by setting USE_POLL="". For example : |
| 223 | |
| 224 | $ gmake TARGET=tiny USE_POLL="" TARGET_CFLAGS=-fomit-frame-pointer |
| 225 | |
Willy Tarreau | b1a34b6 | 2010-05-09 22:37:12 +0200 | [diff] [blame] | 226 | |
Willy Tarreau | 29b2531 | 2016-11-08 14:57:29 +0100 | [diff] [blame] | 227 | 1.1) Device Detection |
| 228 | --------------------- |
David Carlier | b5efa01 | 2015-06-01 14:21:47 +0200 | [diff] [blame] | 229 | |
Willy Tarreau | 29b2531 | 2016-11-08 14:57:29 +0100 | [diff] [blame] | 230 | HAProxy supports several device detection modules relying on third party |
| 231 | products. Some of them may provide free code, others free libs, others free |
| 232 | evaluation licenses. Please read about their respective details in the |
| 233 | following files : |
David Carlier | b5efa01 | 2015-06-01 14:21:47 +0200 | [diff] [blame] | 234 | |
Willy Tarreau | 29b2531 | 2016-11-08 14:57:29 +0100 | [diff] [blame] | 235 | doc/DeviceAtlas-device-detection.txt for DeviceAtlas |
| 236 | doc/51Degrees-device-detection.txt for 51Degrees |
| 237 | doc/WURFL-device-detection.txt for Scientiamobile WURFL |
scientiamobile | d0027ed | 2016-11-04 10:55:08 +0100 | [diff] [blame] | 238 | |
scientiamobile | d0027ed | 2016-11-04 10:55:08 +0100 | [diff] [blame] | 239 | |
Willy Tarreau | b1a34b6 | 2010-05-09 22:37:12 +0200 | [diff] [blame] | 240 | 2) How to install it |
| 241 | -------------------- |
| 242 | |
| 243 | To install haproxy, you can either copy the single resulting binary to the |
| 244 | place you want, or run : |
| 245 | |
| 246 | $ sudo make install |
| 247 | |
| 248 | If you're packaging it for another system, you can specify its root directory |
| 249 | in the usual DESTDIR variable. |
| 250 | |
| 251 | |
| 252 | 3) How to set it up |
| 253 | ------------------- |
| 254 | |
| 255 | There is some documentation in the doc/ directory : |
| 256 | |
Willy Tarreau | d8e42b6 | 2015-08-18 21:51:36 +0200 | [diff] [blame] | 257 | - intro.txt : this is an introduction to haproxy, it explains what it is |
| 258 | what it is not. Useful for beginners or to re-discover it when planning |
| 259 | for an upgrade. |
| 260 | |
Willy Tarreau | b1a34b6 | 2010-05-09 22:37:12 +0200 | [diff] [blame] | 261 | - architecture.txt : this is the architecture manual. It is quite old and |
| 262 | does not tell about the nice new features, but it's still a good starting |
| 263 | point when you know what you want but don't know how to do it. |
| 264 | |
| 265 | - configuration.txt : this is the configuration manual. It recalls a few |
| 266 | essential HTTP basic concepts, and details all the configuration file |
| 267 | syntax (keywords, units). It also describes the log and stats format. It |
| 268 | is normally always up to date. If you see that something is missing from |
Willy Tarreau | 74774c0 | 2014-04-23 00:57:08 +0200 | [diff] [blame] | 269 | it, please report it as this is a bug. Please note that this file is |
| 270 | huge and that it's generally more convenient to review Cyril Bonté's |
| 271 | HTML translation online here : |
| 272 | |
Willy Tarreau | 844028b | 2015-10-13 18:52:22 +0200 | [diff] [blame] | 273 | http://cbonte.github.io/haproxy-dconv/configuration-1.6.html |
Willy Tarreau | b1a34b6 | 2010-05-09 22:37:12 +0200 | [diff] [blame] | 274 | |
Willy Tarreau | 373933d | 2015-10-13 16:32:20 +0200 | [diff] [blame] | 275 | - management.txt : it explains how to start haproxy, how to manage it at |
| 276 | runtime, how to manage it on multiple nodes, how to proceed with seamless |
| 277 | upgrades. |
Willy Tarreau | b1a34b6 | 2010-05-09 22:37:12 +0200 | [diff] [blame] | 278 | |
| 279 | - gpl.txt / lgpl.txt : the copy of the licenses covering the software. See |
| 280 | the 'LICENSE' file at the top for more information. |
| 281 | |
| 282 | - the rest is mainly for developers. |
| 283 | |
| 284 | There are also a number of nice configuration examples in the "examples" |
| 285 | directory as well as on several sites and articles on the net which are linked |
| 286 | to from the haproxy web site. |
| 287 | |
| 288 | |
| 289 | 4) How to report a bug |
| 290 | ---------------------- |
| 291 | |
| 292 | It is possible that from time to time you'll find a bug. A bug is a case where |
| 293 | what you see is not what is documented. Otherwise it can be a misdesign. If you |
| 294 | find that something is stupidly design, please discuss it on the list (see the |
| 295 | "how to contribute" section below). If you feel like you're proceeding right |
| 296 | and haproxy doesn't obey, then first ask yourself if it is possible that nobody |
| 297 | before you has even encountered this issue. If it's unlikely, the you probably |
| 298 | have an issue in your setup. Just in case of doubt, please consult the mailing |
| 299 | list archives : |
| 300 | |
Willy Tarreau | b1a34b6 | 2010-05-09 22:37:12 +0200 | [diff] [blame] | 301 | http://marc.info/?l=haproxy |
| 302 | |
| 303 | Otherwise, please try to gather the maximum amount of information to help |
| 304 | reproduce the issue and send that to the mailing list : |
| 305 | |
| 306 | haproxy@formilux.org |
| 307 | |
| 308 | Please include your configuration and logs. You can mask your IP addresses and |
| 309 | passwords, we don't need them. But it's essential that you post your config if |
| 310 | you want people to guess what is happening. |
| 311 | |
| 312 | Also, keep in mind that haproxy is designed to NEVER CRASH. If you see it die |
| 313 | without any reason, then it definitely is a critical bug that must be reported |
| 314 | and urgently fixed. It has happened a couple of times in the past, essentially |
| 315 | on development versions running on new architectures. If you think your setup |
| 316 | is fairly common, then it is possible that the issue is totally unrelated. |
| 317 | Anyway, if that happens, feel free to contact me directly, as I will give you |
| 318 | instructions on how to collect a usable core file, and will probably ask for |
| 319 | other captures that you'll not want to share with the list. |
| 320 | |
| 321 | |
| 322 | 5) How to contribute |
| 323 | -------------------- |
| 324 | |
Willy Tarreau | 11e334d9 | 2015-09-20 22:31:42 +0200 | [diff] [blame] | 325 | Please carefully read the CONTRIBUTING file that comes with the sources. It is |
| 326 | mandatory. |
Willy Tarreau | b1a34b6 | 2010-05-09 22:37:12 +0200 | [diff] [blame] | 327 | |
willy tarreau | 7834533 | 2005-12-18 01:33:16 +0100 | [diff] [blame] | 328 | -- end |