Skip to content

Commit 60e4ea4

Browse files
author
HAProxy Community
committed
Update docs for 2.6
1 parent 71af590 commit 60e4ea4

File tree

3 files changed

+27
-25
lines changed

3 files changed

+27
-25
lines changed

docs/2.6/configuration.html

Lines changed: 10 additions & 8 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 2.6.21-12 - Configuration Manual</title>
5+
<title>HAProxy version 2.6.21-60 - 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" />
@@ -4145,7 +4145,7 @@
41454145
You can use <strong>left</strong> and <strong>right</strong> arrow keys to navigate between chapters.<br>
41464146
</p>
41474147
<p class="text-right">
4148-
<small>Converted with <a href="https://github.com/cbonte/haproxy-dconv">haproxy-dconv</a> v<b>0.4.2-15</b> on <b>2025/01/29</b></small>
4148+
<small>Converted with <a href="https://github.com/cbonte/haproxy-dconv">haproxy-dconv</a> v<b>0.4.2-15</b> on <b>2025/04/17</b></small>
41494149
</p>
41504150
</div>
41514151
<!-- /.sidebar -->
@@ -4156,7 +4156,7 @@
41564156
<div class="text-center">
41574157
<h1><a href="http://www.haproxy.org/" title="HAProxy"><img src="../img/HAProxyCommunityEdition_60px.png?0.4.2-15" /></a></h1>
41584158
<h2>Configuration Manual</h2>
4159-
<p><strong>version 2.6.21-12</strong></p>
4159+
<p><strong>version 2.6.21-60</strong></p>
41604160
<p>
41614161
2025/01/29<br>
41624162

@@ -6309,6 +6309,7 @@ <h2 id="chapter-2.7" data-target="2.7"><small><a class="small" href="#2.7">2.7.<
63096309
- <a href="#nopoll">nopoll</a>
63106310
- <a href="#noreuseport">noreuseport</a>
63116311
- <a href="#nosplice">nosplice</a>
6312+
- <a href="#profiling.memory">profiling.memory</a>
63126313
- <a href="#profiling.tasks">profiling.tasks</a>
63136314
- <a href="#server-state-base">server-state-base</a>
63146315
- <a href="#server-state-file">server-state-file</a>
@@ -14233,7 +14234,8 @@ <h2 id="chapter-4.2" data-target="4.2"><small><a class="small" href="#4.2">4.2.<
1423314234
third retry. You can disable redispatches with a value of 0.</pre>
1423414235
</div>
1423514236
<pre class="text">In HTTP mode, if a server designated by a cookie is down, clients may
14236-
definitely stick to it because they cannot flush the cookie, so they will not
14237+
definitely stick to it, for example when using &quot;<a href="#option%20persist">option persist</a>&quot; or
14238+
&quot;<a href="#force-persist">force-persist</a>&quot;, because they cannot flush the cookie, so they will not
1423714239
be able to access the service anymore.
1423814240

1423914241
Specifying &quot;<a href="#option%20redispatch">option redispatch</a>&quot; will allow the proxy to break cookie or
@@ -14265,7 +14267,7 @@ <h2 id="chapter-4.2" data-target="4.2"><small><a class="small" href="#4.2">4.2.<
1426514267

1426614268
If this option has been enabled in a &quot;defaults&quot; section, it can be disabled
1426714269
in a specific instance by prepending the &quot;no&quot; keyword before it.
14268-
</pre><div class="page-header"><b>See also :</b> &quot;<a href="#retries">retries</a>&quot;, &quot;<a href="#force-persist">force-persist</a>&quot;</div>
14270+
</pre><div class="page-header"><b>See also :</b> &quot;<a href="#option%20persist">option persist</a>&quot;, &quot;<a href="#force-persist">force-persist</a>&quot;, &quot;<a href="#retries">retries</a>&quot;</div>
1426914271
<a class="anchor" name="option"></a><a class="anchor" name="4-option"></a><a class="anchor" name="4.2-option"></a><a class="anchor" name="option (Proxies)"></a><a class="anchor" name="option (Alphabetically sorted keywords reference)"></a><a class="anchor" name="option redis-check"></a><a class="anchor" name="4-option redis-check"></a><a class="anchor" name="4.2-option redis-check"></a><a class="anchor" name="option redis-check (Proxies)"></a><a class="anchor" name="option redis-check (Alphabetically sorted keywords reference)"></a><div class="keyword"><b><a class="anchor" name="option redis-check"></a><a href="#4.2-option%20redis-check">option redis-check</a></b></div><pre class="text">Use redis health checks for server testing
1427014272
</pre><div><p> May be used in sections :</p><table class="table table-bordered" border="0" cellspacing="0" cellpadding="0">
1427114273
<thead><tr><th>defaults</th><th>frontend</th><th>listen</th><th>backend</th></tr></thead>
@@ -17106,8 +17108,8 @@ <h2 id="chapter-4.2" data-target="4.2"><small><a class="small" href="#4.2">4.2.<
1710617108
<span class="comment"># and reject everything else. (works for HTTP/1 and HTTP/2 connections)</span>
1710717109
acl is_host_com hdr(Host) -i example.com
1710817110
tcp-request inspect-delay 5s
17109-
tcp-request switch-mode http if HTTP
17110-
tcp-request reject <span class="comment"># non-HTTP traffic is implicit here</span>
17111+
tcp-request content switch-mode http if HTTP
17112+
tcp-request content reject <span class="comment"># non-HTTP traffic is implicit here</span>
1711117113
...
1711217114
http-request reject unless is_host_com
1711317115
</code></pre>
@@ -26504,7 +26506,7 @@ <h2 id="chapter-11.3" data-target="11.3"><small><a class="small" href="#11.3">11
2650426506
<br>
2650526507
<hr>
2650626508
<div class="text-right">
26507-
HAProxy 2.6.21-12 &ndash; Configuration Manual<br>
26509+
HAProxy 2.6.21-60 &ndash; Configuration Manual<br>
2650826510
<small>, 2025/01/29</small>
2650926511
</div>
2651026512
</div>

docs/2.6/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 2.6.21-12 - Starter Guide</title>
5+
<title>HAProxy version 2.6.21-60 - 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>2025/01/29</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>2025/04/17</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 2.6.21-12</strong></p>
498+
<p><strong>version 2.6.21-60</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 2.6.21-12 &ndash; Starter Guide<br>
2518+
HAProxy 2.6.21-60 &ndash; Starter Guide<br>
25192519
<small>, </small>
25202520
</div>
25212521
</div>

docs/2.6/management.html

Lines changed: 13 additions & 13 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 2.6.21-12 - Management Guide</title>
5+
<title>HAProxy version 2.6.21-60 - 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" />
@@ -592,7 +592,7 @@
592592
You can use <strong>left</strong> and <strong>right</strong> arrow keys to navigate between chapters.<br>
593593
</p>
594594
<p class="text-right">
595-
<small>Converted with <a href="https://github.com/cbonte/haproxy-dconv">haproxy-dconv</a> v<b>0.4.2-15</b> on <b>2025/01/29</b></small>
595+
<small>Converted with <a href="https://github.com/cbonte/haproxy-dconv">haproxy-dconv</a> v<b>0.4.2-15</b> on <b>2025/04/17</b></small>
596596
</p>
597597
</div>
598598
<!-- /.sidebar -->
@@ -603,7 +603,7 @@
603603
<div class="text-center">
604604
<h1><a href="http://www.haproxy.org/" title="HAProxy"><img src="../img/HAProxyCommunityEdition_60px.png?0.4.2-15" /></a></h1>
605605
<h2>Management Guide</h2>
606-
<p><strong>version 2.6.21-12</strong></p>
606+
<p><strong>version 2.6.21-60</strong></p>
607607
<p>
608608
<br>
609609

@@ -1827,9 +1827,9 @@ <h1 id="chapter-summary" data-target="summary">Summary</h1>
18271827
Unix socket.
18281828

18291829
Statistics are regroup in categories labelled as domains, corresponding to the
1830-
multiple components of HAProxy. There are two domains available: proxy and dns.
1831-
If not specified, the proxy domain is selected. Note that only the proxy
1832-
statistics are printed on the HTTP page.
1830+
multiple components of HAProxy. There are two domains available: proxy and
1831+
resolvers. If not specified, the proxy domain is selected. Note that only the
1832+
proxy statistics are printed on the HTTP page.
18331833
</pre></div>
18341834
<a class="anchor" id="9.1" name="9.1"></a>
18351835
<h2 id="chapter-9.1" data-target="9.1"><small><a class="small" href="#9.1">9.1.</a></small> CSV format</h2>
@@ -3587,12 +3587,12 @@ <h2 id="chapter-9.3" data-target="9.3"><small><a class="small" href="#9.3">9.3.<
35873587
The special id &quot;all&quot; dumps the states of all sessions, which must be avoided
35883588
as much as possible as it is highly CPU intensive and can take a lot of time.
35893589
</pre><a class="anchor" name="show"></a><a class="anchor" name="9-show"></a><a class="anchor" name="9.3-show"></a><a class="anchor" name="show (Statistics and monitoring)"></a><a class="anchor" name="show (Unix Socket commands)"></a><a class="anchor" name="show stat"></a><a class="anchor" name="9-show stat"></a><a class="anchor" name="9.3-show stat"></a><a class="anchor" name="show stat (Statistics and monitoring)"></a><a class="anchor" name="show stat (Unix Socket commands)"></a><div class="keyword"><b><a class="anchor" name="show stat"></a><a href="#9.3-show%20stat">show stat</a></b> <span style="color: #008">[domain <span style="color: #080">&lt;resolvers|proxy&gt;</span>]</span> <span style="color: #008">[<span style="color: #800">{<span style="color: #080">&lt;iid&gt;</span>|<span style="color: #080">&lt;proxy&gt;</span>}</span> <span style="color: #080">&lt;type&gt;</span> <span style="color: #080">&lt;sid&gt;</span>]</span> \
3590-
<span style="color: #008">[typed|json]</span> <span style="color: #008">[desc]</span> <span style="color: #008">[up|no-maint]</span></div><pre class="text">Dump statistics. The domain is used to select which statistics to print; dns
3591-
and proxy are available for now. By default, the CSV format is used; you can
3592-
activate the extended typed output format described in the section above if
3593-
&quot;typed&quot; is passed after the other arguments; or in JSON if &quot;json&quot; is passed
3594-
after the other arguments. By passing &lt;id&gt;, &lt;type&gt; and &lt;sid&gt;, it is possible
3595-
to dump only selected items :
3590+
<span style="color: #008">[typed|json]</span> <span style="color: #008">[desc]</span> <span style="color: #008">[up|no-maint]</span></div><pre class="text">Dump statistics. The domain is used to select which statistics to print;
3591+
resolvers and proxy are available for now. By default, the CSV format is used;
3592+
you can activate the extended typed output format described in the section
3593+
above if &quot;typed&quot; is passed after the other arguments; or in JSON if &quot;json&quot; is
3594+
passed after the other arguments. By passing &lt;id&gt;, &lt;type&gt; and &lt;sid&gt;, it is
3595+
possible to dump only selected items :
35963596
- &lt;iid&gt; is a proxy ID, -1 to dump everything. Alternatively, a proxy name
35973597
&lt;proxy&gt; may be specified. In this case, this proxy's ID will be used as
35983598
the ID selector.
@@ -4716,7 +4716,7 @@ <h3 id="chapter-9.4.1" data-target="9.4.1"><small><a class="small" href="#9.4.1"
47164716
<br>
47174717
<hr>
47184718
<div class="text-right">
4719-
HAProxy 2.6.21-12 &ndash; Management Guide<br>
4719+
HAProxy 2.6.21-60 &ndash; Management Guide<br>
47204720
<small>, </small>
47214721
</div>
47224722
</div>

0 commit comments

Comments
 (0)