On Wed, Aug 11, 2010 at 04:12:35PM +0200, [email protected] wrote: > Hi, > > I made a little progress :) It works with more than one listen section in one > configuration. But accessing the stats via a web browser still does not work.
your "stats scope ." means that the stats reported to the browser will only be the ones of the section where the stats are declared. So basically you're granting access to the stats's stats only :-) Just remove this line and you'll get your whole stats. > listen stats :81 > mode http > stats enable > stats hide-version > stats scope . <----- this one > stats uri /admin?stats > stats realm Haproxy\ Statistics > stats auth xxx:xxx Regards, Willy

