Re: I'm so close (I Think) - need a little help finishing this - Haproxy SSL offloading with ACLs and a wildcard cert

2013-10-22 Thread Baptiste
Hi Chris, My answers inline. On Mon, Oct 21, 2013 at 10:57 PM, Chris bludge...@gmail.com wrote: - If any of these domains and subdomains are called with http://, they need to be redirected to https:// # redirect http to https when connection is not ciphered http-request redirect scheme https

Unsubscribe

2013-10-22 Thread Richard Harris
Unsubscribe

Explore las estrategias que han llevado a Walt Disney a la cima

2013-10-22 Thread Lina velez
Seminario Internacional Disney Institute "Modelo Disney de Excelencia Empresarial" Medellín 08 de Noviembre de 2013El legado de Walter Elias Disney va mucho más allá de la historia de un ratoncito y sus amigos; Disney fue un empresario visionario, que a partir de sus humildes orígenes

handling hundreds of reqrep statements

2013-10-22 Thread Patrick Hemmer
I'm currently using haproxy (1.5-dev19) as a content based router. It takes an incoming request, looks at the url, rewrites it, and sends it on to the appropriate back end. The difficult part is that we need to all parsing and rewriting after the first match. This is because we might have a url

Re: handling hundreds of reqrep statements

2013-10-22 Thread Patrick Hemmer
*From: *Patrick Hemmer hapr...@stormcloud9.net *Sent: * 2013-10-22 19:13:08 E *To: *haproxy@formilux.org *Subject: *handling hundreds of reqrep statements I'm currently using haproxy (1.5-dev19) as a content based router.

Re: handling hundreds of reqrep statements

2013-10-22 Thread hushmehard
On Wed, 23 Oct 2013 05:33:38 +0200 Patrick Hemmer hapr...@stormcloud9.net wrote: reqrep ^(GET)\ /foo/(.*) \1\ /foo/\2\r\nX-Header-ID:\ bar if !rewrite-found What about reqadd? Clumsy fiddling with \r\n (or \n\r) in regexp seems awkward to me. reqadd X-Header-ID:\ bar unless rewrite-found