Re: Question about Proxy ~ something syntax

2013-12-18 Thread Daniel Ruggeri
On 12/15/2013 11:37 PM, Christophe JAILLET wrote: Apparently Proxy ~ xx is equivalent to ProxyMatch xx So, should we: 1) just leave it as it is. 2) remove this behavior, which has never been documented. 3) update doc. My choice is 2) because - it has never been documented,

Re: Question about Proxy ~ something syntax

2013-12-18 Thread Christophe JAILLET
*r1552227*

Question about Proxy ~ something syntax

2013-12-15 Thread Christophe JAILLET
Hi, I was about to commit a patch for mod_proxy.c, but around line 2230 else if (!strcmp(cmd-path, ~)) { cmd-path = ap_getword_conf(cmd-pool, arg); if (!cmd-path) return Proxy ~ block must specify a path; !cmd-path should be !cmd-path[0] because 'ap_getword_conf' does not

Re: Question about Proxy ~ something syntax

2013-12-15 Thread Thomas Eckert
Why offer an option to a directive which makes it behave differently AND have an explicit directive for that exact behaviour ? I see no gain from this but a lot of potential harm in terms of user confusion. Better be explicit and unambiguous - 2) On Mon, Dec 16, 2013 at 6:37 AM, Christophe