Re: HAProxy and SNI

2012-03-30 Thread Baptiste
Forget about it, I found it in the git: this is a brilliant news :) req_ssl_sni string Returns true when data in the request buffer looks like a complete SSL (v3 or superior) client hello message with a Server Name Indication TLS extension (SNI) matching string. SNI normally contains the

Re: Copying a Header before Modifying it

2012-03-30 Thread William Lewis
Baptiste wrote: On Thu, Mar 29, 2012 at 11:42 PM, William Lewis m...@wlewis.co.uk wrote: Hi Cyril, Cyril Bont wrote: Hi William, Le 29/03/2012 14:30, William Lewis a crit : Hi, So I use Haproxy to rewrite some URL requests infront of my java webservers, but I also want my

Re: Copying a Header before Modifying it

2012-03-30 Thread Cyril Bonté
Hi all, Le 30/03/2012 12:27, William Lewis a écrit : Baptiste wrote: (...) You hould enable http-server-close on the frontend side as well. Or better, put it in the defaults. cheers I've added http-server-close to the defaults and the acl still doesn't match when I write the

Re: haproxy 1.5dev7 server check failed with IPv6

2012-03-30 Thread Brane F. Gračnar
On 03/29/2012 10:20 PM, Sander Klein wrote: Are you sure it's not an config error on the webserver side? I've been running dev7 for quite some time and do a lot of IPv6 checks. Never had any problems with it. Same here. Best regards, Brane

Re: Copying a Header before Modifying it

2012-03-30 Thread Cyril Bonté
Hi again, Le 30/03/2012 13:24, Cyril Bonté a écrit : Hi all, Le 30/03/2012 12:27, William Lewis a écrit : Baptiste wrote: (...) You hould enable http-server-close on the frontend side as well. Or better, put it in the defaults. cheers I've added http-server-close to the defaults and

Surge 2012 CFP is Open!

2012-03-30 Thread Katherine Jeschke
Surge 2012, the scalability conference, September 27-28, Baltimore, MD has opened its CFP. Please visit http://omniti.com/surge/2012/cfp for details. -- Katherine Jeschke Director of Marketing and Creative Services OmniTI Computer Consulting, Inc. 7070 Samuel Morse Drive, Ste.150 Columbia, MD

Can we perform rsp_add for specified hosts?

2012-03-30 Thread fred hu
Hi, All I need insert Set-Cookie response header for specified request(host) I start with creating following two lines of configuration acl rsptest hdr_beg(host) -i www.google.com rspadd Set-Cookie:\ GOOGLEID=123456 if rsptest But all i got is following warning: acl 'rsptest' involves some

Re: Can we perform rsp_add for specified hosts?

2012-03-30 Thread Baptiste
Hi, You're trying to insert a RESPONSE header if a REQUEST header exists. It may not work, either never match or always match. I mean that your acl has an undetermined state when called. You should match something from the response to be sure it works. regards On Sat, Mar 31, 2012 at 5:51 AM,