Re: [EMAIL PROTECTED] Using environment variable in httpd.conf

2006-01-19 Thread Tom Hoefakker
looks like you've gotten additional very useful info. To answer your earlier questions, we're currently running 2.0.54 on AIX 5.2 We're also using a heavily modified apachectl script which is reads delimited instance parameters from records in a "table" file (simple grep/awk). This allows us

Re: [EMAIL PROTECTED] Using environment variable in httpd.conf

2006-01-18 Thread Tom Hoefakker
As far as I know, it's an undocumented "feature". But, in my experience, it does actually work quite well. While I vaguely recall a note on the development list questioning whether or not this should be removed, I would love to see this become a full-fledged documented feature as it is very u

Re: [EMAIL PROTECTED] Configuring apache as a gateway for another domain on another server

2005-11-06 Thread Tom Hoefakker
Maybe a combination of mod_proxy and mod_rewrite is what you're looking for. Something like this: RewriteCond %{HTTP_HOST} www.d1.com [NC] RewriteRule ^(.*) http://m1/$1 [P,L] RewriteCond %{HTTP_HOST} www.d2.com [NC] RewriteRule ^(.*) http://m2/$1 [P,L] I don't have a lot of experience with