Re: git clone hangs?

2011-11-23 Thread Brane F . Gračnar
On Wednesday 23 of November 2011 07:58:26 Willy Tarreau wrote: It is possible there are random network issue from time to time, I remember that git is particularly sensible to this as I've already had trouble cloning kernels in the past. Willy, have you considered migration of git repository

Re: git clone hangs?

2011-11-23 Thread Willy Tarreau
On Wed, Nov 23, 2011 at 10:47:51AM +0100, Brane F. Gra??nar wrote: On Wednesday 23 of November 2011 07:58:26 Willy Tarreau wrote: It is possible there are random network issue from time to time, I remember that git is particularly sensible to this as I've already had trouble cloning kernels

HAProxy and flash sockets

2011-11-23 Thread Lukasz Michalski
Hi, I am trying to use HAProxy as proxy for socket.io transports. Standard XMLHttpRequest and WebSockets work ok but I have trouble with flash transport. The flashtransport uses flash plugin to establish socket connection and after that data is send and received using WebSockets protocol. To

Re: HAproxy log showing wrong timestamps

2011-11-23 Thread Willy Tarreau
Hi Manoj, On Fri, Nov 11, 2011 at 04:48:45AM +, Manoj Kumar wrote: Hi All, I have seen some wired issue with haproxy logs files. Tail of HA proxy log, notice time is 3 hours ahead. This is hindering our ability to correlate logs. It has been fixed after reloading haproxy config. Is

http work witouth backend, why?

2011-11-23 Thread Ricardo F
Hello, I'm trying to confiugre haproxy with https. I have a problem when I use backend, but, when I dont' use backend, it works, it's extrange. Working conf: listen proxy-https *:443 mode tcp # option ssl-hello-chk balance roundrobin option httpchk GET /test.txt

Feature submission offering: HTTP Host rewrite on LB server selection.

2011-11-23 Thread Mark Lamourine
I have had a request here to add a feature to haproxy. I don't know if it would be generally useful or even if there might be a better or more general method to do it. In a load balanced configuration the customer wants the HTTP Host header to be re-written specifically for each destination

unsubscribe

2011-11-23 Thread Adam Isherwood
unsubscribe

unsubscribe

2011-11-23 Thread Adam Isherwood
unsubscriber

Re: http work witouth backend, why?

2011-11-23 Thread Baptiste
It's normal. Either you configure a listen proxy or a set of 2 proxies: a frontend and a backend. So in your case, configuration should look like: frontend proxy-https *:443        mode tcp        option ssl-hello-chk        balance roundrobin        default_backend back-https backend