Re: Rich is looking for a substitute httpd talk for Denver

2014-02-25 Thread William A. Rowe Jr.
On Mon, 24 Feb 2014 10:18:25 -0500 Eric Covener wrote: > We had a cancellation for one of the httpd talks for Denver, any > proposals to fill the slot that either didn't make the first cut or > didn't get submitted at all? > > An alternative option might be an ask / stump the experts or open > d

Re: mod_rewrite/proxy UDS issues

2014-02-25 Thread Yann Ylavic
On Tue, Feb 25, 2014 at 10:39 PM, Yann Ylavic wrote: > > Maybe we could also require fully qualified URLs for RewriteRule(s) with > UDS, and avoid the helpers ( > > mod_rewrite would still need to fully qualify the "unix:" scheme)... > mod_rewrite would still need to NOT fully qualify the "unix

Re: mod_rewrite/proxy UDS issues

2014-02-25 Thread Yann Ylavic
Yes, mod_rewrite is patched so that it calls fully_qualify_url() on the non-UDS part of the URL only. Either mod_rewrite has to split the URL (and needs mod_proxy's helpers), or it does not fully qualify on the "unix:" scheme and let mod_proxy fully qualitfy later (which then needs mod_rewrite's h

Re: 2.4.8 This Month

2014-02-25 Thread Rainer Jung
On 22.02.2014 18:17, Rainer Jung wrote: > On 19.02.2014 14:08, Jim Jagielski wrote: >> I'd like to shoot for a T&R sometime next week... > > I updated aurora our US server for www.apache.org, the project sites and > also mail-archives.a.o to 2.4.8 dev svn revision 1570851 plus apr/apu > head revis

Re: mod_rewrite/proxy UDS issues

2014-02-25 Thread Jim Jagielski
On Feb 25, 2014, at 1:26 PM, Jim Jagielski wrote: > > Why are they optional functions? > Ignore this question :)

Re: mod_rewrite/proxy UDS issues

2014-02-25 Thread Jim Jagielski
Thx... I haven't looked over it yet, but I do see that mod_rewrite is patched... why can't we set that note var and do all the required magic in mod_proxy? Does mod_rewrite itself really need to know about "unix:..."?? Why are they optional functions? On Feb 25, 2014, at 12:18 PM, Yann Ylavic w

Re: mod_rewrite/proxy UDS issues

2014-02-25 Thread Yann Ylavic
On Tue, Feb 25, 2014 at 4:21 PM, Jim Jagielski wrote: > Of course, this doesn't mean that Yann should wait for > me... you seem to have a good grasp. The following (attached) patch does the job, but I'm not it is "elegant". It introduces the new optional ap_proxy_worker_real_url() and proxy_worke

Re: unsubscribe

2014-02-25 Thread Yann Ylavic
On Tue, Feb 25, 2014 at 4:24 PM, Thomas Hilbig wrote: > unsubscribe Please use dev-unsubscr...@httpd.apache.org to achieve this.

unsubscribe

2014-02-25 Thread Thomas Hilbig
unsubscribe

Re: mod_rewrite/proxy UDS issues

2014-02-25 Thread Jim Jagielski
On Feb 25, 2014, at 9:20 AM, Yann Ylavic wrote: > > Only for defined workers, that could be difficult to know. > So the UDS part should probably be handled in mod_rewrite (ie. not > fully-qualified). > It would then be ignored by ap_proxy_pre_request() when a defined > worker is found (using the

Re: mod_rewrite/proxy UDS issues

2014-02-25 Thread Jim Jagielski
Of course, this doesn't mean that Yann should wait for me... you seem to have a good grasp. On Feb 25, 2014, at 10:01 AM, Jim Jagielski wrote: > Now that I understand the issue and the intent, let > me take a look. There might be a non-obvious but > elegant solution... > > BTW: FWIW I'm traveli

Re: mod_rewrite/proxy UDS issues

2014-02-25 Thread Jim Jagielski
Now that I understand the issue and the intent, let me take a look. There might be a non-obvious but elegant solution... BTW: FWIW I'm traveling the next few days so (1) the T&R will likely be pushed to next week and (2) I'll be mostly unavail until next week anyway On Feb 25, 2014, at 9:20 AM, Y

Re: mod_rewrite/proxy UDS issues

2014-02-25 Thread Jim Jagielski
On Feb 25, 2014, at 8:15 AM, Plüm, Rüdiger, Vodafone Group wrote: > > >> -Original Message- >> From: Jim Jagielski [mailto:j...@jagunet.com] >> Sent: Dienstag, 25. Februar 2014 14:09 >> To: dev@httpd.apache.org >> Subject: Re: mod_rewrite/proxy UDS issues >> >> >> On Feb 25, 2014, a

Re: mod_rewrite/proxy UDS issues

2014-02-25 Thread Yann Ylavic
On Tue, Feb 25, 2014 at 2:56 PM, Yann Ylavic wrote: > On Tue, Feb 25, 2014 at 2:46 PM, Yann Ylavic wrote: >> If fact it works if I use the following rule (sorry to have not >> thought about it before) : >> >> RewriteRule "^/(.*)$" "http://localhost/$1"; [P] >> http://localhost"; disablere

Re: mod_rewrite/proxy UDS issues

2014-02-25 Thread Yann Ylavic
On Tue, Feb 25, 2014 at 2:46 PM, Yann Ylavic wrote: > If fact it works if I use the following rule (sorry to have not > thought about it before) : > > RewriteRule "^/(.*)$" "http://localhost/$1"; [P] > http://localhost"; disablereuse=off> > > > Since the worker is registered without t

Re: mod_rewrite/proxy UDS issues

2014-02-25 Thread Yann Ylavic
If fact it works if I use the following rule (sorry to have not thought about it before) : RewriteRule "^/(.*)$" "http://localhost/$1"; [P] http://localhost"; disablereuse=off> Since the worker is registered without the UDS path, it's URL the http one. However this raises the questio

RE: mod_rewrite/proxy UDS issues

2014-02-25 Thread Plüm , Rüdiger , Vodafone Group
> -Original Message- > From: Jim Jagielski [mailto:j...@jagunet.com] > Sent: Dienstag, 25. Februar 2014 14:09 > To: dev@httpd.apache.org > Subject: Re: mod_rewrite/proxy UDS issues > > > On Feb 25, 2014, at 7:26 AM, Yann Ylavic wrote: > > > On Mon, Feb 24, 2014 at 9:41 PM, Jim Jagiels

Re: mod_rewrite/proxy UDS issues

2014-02-25 Thread Jim Jagielski
On Feb 25, 2014, at 7:26 AM, Yann Ylavic wrote: > On Mon, Feb 24, 2014 at 9:41 PM, Jim Jagielski wrote: >> >> On Feb 24, 2014, at 10:05 AM, Yann Ylavic wrote: >> >>> I use the following config : >>> >>> >>>ServerName localhost:60080 >>> >>>RewriteEngine on >>>RewriteRule "^/(.

Re: mod_rewrite/proxy UDS issues

2014-02-25 Thread Yann Ylavic
On Tue, Feb 25, 2014 at 1:26 PM, Yann Ylavic wrote: > On Mon, Feb 24, 2014 at 9:41 PM, Jim Jagielski wrote: >> >> On Feb 24, 2014, at 10:05 AM, Yann Ylavic wrote: >> >>> I use the following config : >>> >>> >>> ServerName localhost:60080 >>> >>> RewriteEngine on >>> RewriteRule "^/(

Re: mod_rewrite/proxy UDS issues

2014-02-25 Thread Yann Ylavic
On Mon, Feb 24, 2014 at 9:41 PM, Jim Jagielski wrote: > > On Feb 24, 2014, at 10:05 AM, Yann Ylavic wrote: > >> I use the following config : >> >> >> ServerName localhost:60080 >> >> RewriteEngine on >> RewriteRule "^/(.*)$" "unix:/tmp/backend.sock|http://localhost/$1"; [P,NE] >> >>