I've patched dev16 as belows:
# diff -Nu haproxy-1.5-dev16/src/proto_http.c
haproxy-1.5-dev16-new/src/proto_http.c
--- haproxy-1.5-dev16/src/proto_http.c 2012-12-25 00:48:14.000000000 +0900
+++ haproxy-1.5-dev16-new/src/proto_http.c 2012-12-25 09:26:27.545049268
+0900
@@ -3117,7 +3117,7 @@
}
}
}
- return rule;
+ return NULL;
}
/* This stream analyser runs all HTTP request processing which is common to
Then, stat page works well!!
-----Original Message-----
From: <[email protected]>
To: <[email protected]>;
Cc:
Sent: 2012-12-25 (화) 04:32:55
Subject: RE: [ANNOUNCE] haproxy-1.5-dev16
On Tue, 25 Dec 2012 02:40:39 +0900 (KST), [email protected] wrote:
> stats http-request configuration is broken!!
I confirm this, stats seem broken. this code is working in dev15:
[code]
listen stats 123.45.67.89:12345
mode http
option httpclose
stats enable
stats uri /
stats realm restricted
stats auth 1234:5678
[/code]
but returns "503 Service Unavailable" in dev16
Cheers,
Kai