Re: [users@httpd] mod_rewrite access control configuration

2012-01-17 Thread Asplund Marko
Tom Evans wrote: > If you don't want to proxy certain URLs, then instruct mod_proxy not > to proxy them: > > ProxyPass /foo ! > ProxyPass /bar ! > ProxyPass /baz ! > ProxyPass / ajp://127.0.0.1:8009/ > > No need to be messing with rewrite rules. Yes, good point, thanks. I'll probably go with a s

Re: [users@httpd] mod_rewrite access control configuration

2012-01-16 Thread Tom Evans
On Sat, Jan 14, 2012 at 8:35 AM, Asplund Marko wrote: > Hi, > > I'm using Apache httpd to act as a reverse proxy and I'd like to block > access to all but explicitly listed resources. > I've come up with two possible solutions that i'd like to check with more > experienced mod_rewrite users. > > I

Re: [users@httpd] mod_rewrite access control configuration

2012-01-14 Thread Jeroen Geilman
On 01/14/2012 09:35 AM, Asplund Marko wrote: Hi, I'm using Apache httpd to act as a reverse proxy and I'd like to block access to all but explicitly listed resources. I've come up with two possible solutions that i'd like to check with more experienced mod_rewrite users. Is there any difference

[users@httpd] mod_rewrite access control configuration

2012-01-14 Thread Asplund Marko
Hi, I'm using Apache httpd to act as a reverse proxy and I'd like to block access to all but explicitly listed resources. I've come up with two possible solutions that i'd like to check with more experienced mod_rewrite users. Is there any difference between the two approaches below from performa