[DOC] add some informations about 'stats' and 'option httpclose'.

This commit is contained in:
willy tarreau 2006-05-21 21:54:14 +02:00
parent 052c15dbe6
commit d4ba08d7ca

View File

@ -2347,6 +2347,7 @@ Example :
# simple application with authenticated embedded status report
listen app1 192.168.1.100:80
mode http
option httpclose
balance roundrobin
cookie SERVERID postonly insert indirect
server srv1 192.168.1.1:8080 cookie srv1 check inter 1000
@ -2361,6 +2362,7 @@ Example :
# simple application with anonymous embedded status report
listen app2 192.168.2.100:80
mode http
option httpclose
balance roundrobin
cookie SERVERID postonly insert indirect
server srv1 192.168.2.1:8080 cookie srv1 check inter 1000
@ -2388,6 +2390,11 @@ Notes :
remove it from the browser so it will be sent to the whole application
upon further accesses.
- It is very important that the 'option httpclose' is specified, otherwise
the proxy will not be able to detect the URI within keep-alive sessions
maintained between the browser and the servers, so the stats URI will be
forwarded unmodified to the server as if the option was not set.
=========================
| System-specific setup |