haproxy: upgrade haproxy to version 1.5.0

- includes support for SSL Termination, Compression Offloading, OCSP
	  Stapling support and much more

Signed-off-by: Thomas Heil <heil@terminal-consulting.de>
This commit is contained in:
Thomas Heil
2014-06-19 23:45:18 +02:00
parent db5d567e7d
commit d48626190c
3 changed files with 45 additions and 518 deletions
+3 -1
View File
@@ -15,9 +15,11 @@ start() {
}
stop() {
kill -9 $(cat $HAPROXY_PID | tr "\n" " ")
service_stop $HAPROXY_BIN
}
reload() {
$HAPROXY_BIN -D -q -f $HAPROXY_CONFIG -p $HAPROXY_PID -sf $(cat $HAPROXY_PID)
$HAPROXY_BIN -D -q -f $HAPROXY_CONFIG -p $HAPROXY_PID -sf $(cat $HAPROXY_PID | tr "\n" " ")
#$HAPROXY_BIN -D -q -f $HAPROXY_CONFIG -p $HAPROXY_PID -sf $(cat $HAPROXY_PID)
}