Skip to content

Commit 2cfb289

Browse files
author
HAProxy Community
committed
Update docs for 3.2
1 parent 333b70f commit 2cfb289

3 files changed

Lines changed: 36 additions & 24 deletions

File tree

docs/3.2/configuration.html

Lines changed: 28 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<html lang="en">
33
<head>
44
<meta charset="utf-8" />
5-
<title>HAProxy version 3.2.19 - Configuration Manual</title>
5+
<title>HAProxy version 3.2.19-29 - Configuration Manual</title>
66
<link href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet" />
77
<link href="https://raw.githubusercontent.com/thomaspark/bootswatch/v3.3.7/cerulean/bootstrap.min.css" rel="stylesheet" />
88
<link href="../css/page.css?0.4.2-15" rel="stylesheet" />
@@ -4636,7 +4636,7 @@
46364636
You can use <strong>left</strong> and <strong>right</strong> arrow keys to navigate between chapters.<br>
46374637
</p>
46384638
<p class="text-right">
4639-
<small>Converted with <a href="https://github.com/cbonte/haproxy-dconv">haproxy-dconv</a> v<b>0.4.2-15</b> on <b>2026/05/11</b></small>
4639+
<small>Converted with <a href="https://github.com/cbonte/haproxy-dconv">haproxy-dconv</a> v<b>0.4.2-15</b> on <b>2026/05/21</b></small>
46404640
</p>
46414641
</div>
46424642
<!-- /.sidebar -->
@@ -4647,7 +4647,7 @@
46474647
<div class="text-center">
46484648
<h1><a href="http://www.haproxy.org/" title="HAProxy"><img src="../img/HAProxyCommunityEdition_60px.png?0.4.2-15" /></a></h1>
46494649
<h2>Configuration Manual</h2>
4650-
<p><strong>version 3.2.19</strong></p>
4650+
<p><strong>version 3.2.19-29</strong></p>
46514651
<p>
46524652
2026/05/11<br>
46534653

@@ -12615,7 +12615,10 @@ <h2 id="chapter-4.2" data-target="4.2"><small><a class="small" href="#4.2">4.2.<
1261512615

1261612616
none don't hash the key, the key will be used as a hash, this can be
1261712617
useful to manually hash the key using a converter for that purpose
12618-
and let haproxy use the result directly.
12618+
and let haproxy use the result directly. The operation will
12619+
convert the key to a string if it is not already, and parse it as
12620+
an integer whose value will be used as the key. Some input key
12621+
types might not be relevant here (e.g. IP addresses).
1261912622

1262012623
&lt;modifier&gt; indicates an optional method applied after hashing the key :
1262112624

@@ -22224,27 +22227,32 @@ <h2 id="chapter-5.2" data-target="5.2"><small><a class="small" href="#5.2">5.2.<
2222422227
effect to extend the effective check interval. In such a case, reducing the
2222522228
&quot;<a href="#inter">inter</a>&quot; setting will have a very limited effect as it will not be able to
2222622229
reduce the time spent in the queue.
22227-
</pre><a class="anchor" name="init-state"></a><a class="anchor" name="5-init-state"></a><a class="anchor" name="5.2-init-state"></a><a class="anchor" name="init-state (Bind and server options)"></a><a class="anchor" name="init-state (Server and default-server options)"></a><div class="keyword"><b><a class="anchor" name="init-state"></a><a href="#5.2-init-state">init-state</a></b> <span style="color: #800">{ fully-up | up | down | fully-down }</span></div><pre class="text">May be used in the following contexts: tcp, http
22230+
</pre><a class="anchor" name="init-state"></a><a class="anchor" name="5-init-state"></a><a class="anchor" name="5.2-init-state"></a><a class="anchor" name="init-state (Bind and server options)"></a><a class="anchor" name="init-state (Server and default-server options)"></a><div class="keyword"><b><a class="anchor" name="init-state"></a><a href="#5.2-init-state">init-state</a></b> <span style="color: #800">{ fully-up | up | down | fully-down | none }</span></div><pre class="text">May be used in the following contexts: tcp, http
2222822231
</pre><div><p> May be used in sections :</p><table class="table table-bordered" border="0" cellspacing="0" cellpadding="0">
2222922232
<thead><tr><th>defaults</th><th>frontend</th><th>listen</th><th>backend</th></tr></thead>
2223022233
<tr><td class="alert-error pagination-centered">no<br /><img src="../css/cross.png" alt="no" title="no" /></td><td class="alert-error pagination-centered">no<br /><img src="../css/cross.png" alt="no" title="no" /></td><td class="alert-success pagination-centered">yes<br /><img src="../css/check.png" alt="yes" title="yes" /></td><td class="alert-success pagination-centered">yes<br /><img src="../css/check.png" alt="yes" title="yes" /></td></tr>
2223122234
</table></div>
2223222235
<pre class="text">The &quot;<a href="#init-state">init-state</a>&quot; option sets the initial state of the server:
2223322236
- when set to 'fully-up', the server is considered immediately available
22234-
and can turn to the DOWN state when ALL health checks fail.
22235-
- when set to 'up' (the default), the server is considered immediately
22236-
available and will initiate a health check that can turn it to the DOWN
22237-
state immediately if it fails.
22238-
- when set to 'down', the server initially is considered unavailable and
22239-
will initiate a health check that can turn it to the UP state immediately
22240-
if it succeeds.
22237+
and, if health checks are enabled for this server, it will be turned to
22238+
the DOWN state when ALL health checks fail.
22239+
- when set to 'up', the server is considered immediately available and, if
22240+
health checks are enabled for this server, it will be turned to the DOWN
22241+
state immediately if the next health check fails.
22242+
- when set to 'down', the server initially is considered unavailable and,
22243+
if health checks are enabled for this server, it can be turned to the UP
22244+
state if the next health check succeeds.
2224122245
- when set to 'fully-down', the server is initially considered unavailable
22242-
and can turn to the UP state when ALL health checks succeed.
22246+
and, if health checks are enabled for this server, it will turned to the
22247+
UP state when ALL health checks succeed.
22248+
- when set to 'none' (the default value), init-state management is
22249+
disabled. It can be used to restore the default behavior when this
22250+
parameter was inherited from a 'default-server' directive.
2224322251

2224422252
The server's init-state is considered when the HAProxy instance is
2224522253
(re)started, a new server is detected (for example via service discovery /
2224622254
DNS resolution), a dynamic server is inlived, a server exits maintenance,
22247-
etc.
22255+
etc. This directive cannot be used when the server is tracking another one.
2224822256
</pre><div class="separator">
2224922257
<span class="label label-success">Examples:</span>
2225022258
<pre class="prettyprint">
@@ -23188,7 +23196,11 @@ <h3 id="chapter-5.3.2" data-target="5.3.2"><small><a class="small" href="#5.3.2"
2318823196
As a DNS server may not answer all the IPs in one DNS request, HAProxy keeps
2318923197
a cache of previous answers, an answer will be considered obsolete after
2319023198
&lt;hold obsolete&gt; seconds without the IP returned.
23191-
</pre><a class="anchor" name="resolvers"></a><a class="anchor" name="5-resolvers"></a><a class="anchor" name="5.3.2-resolvers"></a><a class="anchor" name="resolvers (Bind and server options)"></a><a class="anchor" name="resolvers (The resolvers section)"></a><div class="keyword"><b><a class="anchor" name="resolvers"></a><a href="#5.3.2-resolvers">resolvers</a></b> <span style="color: #080">&lt;resolvers id&gt;</span></div><pre class="text"> Creates a new name server list labeled &lt;resolvers id&gt;
23199+
</pre><a class="anchor" name="resolvers"></a><a class="anchor" name="5-resolvers"></a><a class="anchor" name="5.3.2-resolvers"></a><a class="anchor" name="resolvers (Bind and server options)"></a><a class="anchor" name="resolvers (The resolvers section)"></a><div class="keyword"><b><a class="anchor" name="resolvers"></a><a href="#5.3.2-resolvers">resolvers</a></b> <span style="color: #080">&lt;resolvers id&gt;</span></div><pre class="text"> Creates a new name server list labeled &lt;resolvers id&gt;. As mentioned above,
23200+
the special name &quot;default&quot; always exists and will be automatically created if
23201+
not explicitly declared; this will be the one internal services such as
23202+
httpclient rely on. Declaring a &quot;default&quot; entry will affect how such services
23203+
perform their name resolution.
2319223204

2319323205
A resolvers section accept the following parameters:
2319423206
</pre><a class="anchor" name="accepted_payload_size"></a><a class="anchor" name="5-accepted_payload_size"></a><a class="anchor" name="5.3.2-accepted_payload_size"></a><a class="anchor" name="accepted_payload_size (Bind and server options)"></a><a class="anchor" name="accepted_payload_size (The resolvers section)"></a><div class="keyword"><b><a class="anchor" name="accepted_payload_size"></a><a href="#5.3.2-accepted_payload_size">accepted_payload_size</a></b> <span style="color: #080">&lt;nb&gt;</span></div><pre class="text">Defines the maximum payload size accepted by HAProxy and announced to all the
@@ -33319,7 +33331,7 @@ <h2 id="chapter-12.9" data-target="12.9"><small><a class="small" href="#12.9">12
3331933331
<br>
3332033332
<hr>
3332133333
<div class="text-right">
33322-
HAProxy 3.2.19 &ndash; Configuration Manual<br>
33334+
HAProxy 3.2.19-29 &ndash; Configuration Manual<br>
3332333335
<small>, 2026/05/11</small>
3332433336
</div>
3332533337
</div>

docs/3.2/intro.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<html lang="en">
33
<head>
44
<meta charset="utf-8" />
5-
<title>HAProxy version 3.2.19 - Starter Guide</title>
5+
<title>HAProxy version 3.2.19-29 - Starter Guide</title>
66
<link href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet" />
77
<link href="https://raw.githubusercontent.com/thomaspark/bootswatch/v3.3.7/cerulean/bootstrap.min.css" rel="stylesheet" />
88
<link href="../css/page.css?0.4.2-15" rel="stylesheet" />
@@ -484,7 +484,7 @@
484484
You can use <strong>left</strong> and <strong>right</strong> arrow keys to navigate between chapters.<br>
485485
</p>
486486
<p class="text-right">
487-
<small>Converted with <a href="https://github.com/cbonte/haproxy-dconv">haproxy-dconv</a> v<b>0.4.2-15</b> on <b>2026/05/11</b></small>
487+
<small>Converted with <a href="https://github.com/cbonte/haproxy-dconv">haproxy-dconv</a> v<b>0.4.2-15</b> on <b>2026/05/21</b></small>
488488
</p>
489489
</div>
490490
<!-- /.sidebar -->
@@ -495,7 +495,7 @@
495495
<div class="text-center">
496496
<h1><a href="http://www.haproxy.org/" title="HAProxy"><img src="../img/HAProxyCommunityEdition_60px.png?0.4.2-15" /></a></h1>
497497
<h2>Starter Guide</h2>
498-
<p><strong>version 3.2.19</strong></p>
498+
<p><strong>version 3.2.19-29</strong></p>
499499
<p>
500500
<br>
501501

@@ -2515,7 +2515,7 @@ <h2 id="chapter-4.4" data-target="4.4"><small><a class="small" href="#4.4">4.4.<
25152515
<br>
25162516
<hr>
25172517
<div class="text-right">
2518-
HAProxy 3.2.19 &ndash; Starter Guide<br>
2518+
HAProxy 3.2.19-29 &ndash; Starter Guide<br>
25192519
<small>, </small>
25202520
</div>
25212521
</div>

docs/3.2/management.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<html lang="en">
33
<head>
44
<meta charset="utf-8" />
5-
<title>HAProxy version 3.2.19 - Management Guide</title>
5+
<title>HAProxy version 3.2.19-29 - Management Guide</title>
66
<link href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet" />
77
<link href="https://raw.githubusercontent.com/thomaspark/bootswatch/v3.3.7/cerulean/bootstrap.min.css" rel="stylesheet" />
88
<link href="../css/page.css?0.4.2-15" rel="stylesheet" />
@@ -662,7 +662,7 @@
662662
You can use <strong>left</strong> and <strong>right</strong> arrow keys to navigate between chapters.<br>
663663
</p>
664664
<p class="text-right">
665-
<small>Converted with <a href="https://github.com/cbonte/haproxy-dconv">haproxy-dconv</a> v<b>0.4.2-15</b> on <b>2026/05/11</b></small>
665+
<small>Converted with <a href="https://github.com/cbonte/haproxy-dconv">haproxy-dconv</a> v<b>0.4.2-15</b> on <b>2026/05/21</b></small>
666666
</p>
667667
</div>
668668
<!-- /.sidebar -->
@@ -673,7 +673,7 @@
673673
<div class="text-center">
674674
<h1><a href="http://www.haproxy.org/" title="HAProxy"><img src="../img/HAProxyCommunityEdition_60px.png?0.4.2-15" /></a></h1>
675675
<h2>Management Guide</h2>
676-
<p><strong>version 3.2.19</strong></p>
676+
<p><strong>version 3.2.19-29</strong></p>
677677
<p>
678678
<br>
679679

@@ -5596,7 +5596,7 @@ <h2 id="chapter-13.1" data-target="13.1"><small><a class="small" href="#13.1">13
55965596
<br>
55975597
<hr>
55985598
<div class="text-right">
5599-
HAProxy 3.2.19 &ndash; Management Guide<br>
5599+
HAProxy 3.2.19-29 &ndash; Management Guide<br>
56005600
<small>, </small>
56015601
</div>
56025602
</div>

0 commit comments

Comments
 (0)