Re: [us...@httpd] mod_proxy.c configuration problem for a tomcat6-bridged situation

2010-01-07 Thread Alvise Nicoletti
Alvise Nicoletti wrote: Alvise Nicoletti wrote: Alvise Nicoletti wrote: Eric Covener wrote: On Wed, Jan 6, 2010 at 6:04 AM, Alvise Nicoletti li...@alvisenicoletti.com wrote: I would like to restrict access to everything-but-mywebsite like the example: IfModule mod_proxy.c

Re: [us...@httpd] Apache on IA64

2010-01-07 Thread Devraj Mukherjee
What OS are you referring to ? On Thu, Jan 7, 2010 at 5:05 PM, Pravesh Rai pravesh@gmail.com wrote: Hi All, Has anybody tried to port Apache (2.2.6 onwards) to IA64 setup ? If yes, what would be the major precautions needs to be taken in that case ? Thank, Pravesh

Re: [us...@httpd] Apache on IA64

2010-01-07 Thread Pravesh Rai
Windows 2003 2008 Thanks, Pravesh On Thu, Jan 7, 2010 at 4:11 PM, Devraj Mukherjee dev...@gmail.com wrote: What OS are you referring to ? On Thu, Jan 7, 2010 at 5:05 PM, Pravesh Rai pravesh@gmail.com wrote: Hi All, Has anybody tried to port Apache (2.2.6 onwards) to IA64 setup ? If

Re: [us...@httpd] Trouble installing on windows 7

2010-01-07 Thread Daniel Reinhardt
Wesley, If you have nothing to contribute to the help of this user then do not reply. Your remarks are rather trollish, and quite frankly unwarranted. You in so many words is exactly why I hate the Open Source community with a passion. Your drive to force another operating system onto

Re: [us...@httpd] Trouble installing on windows 7

2010-01-07 Thread Res
On Thu, 7 Jan 2010, Daniel Reinhardt wrote: Wesley, many words is exactly why I hate the Open Source community with a passion. Your drive to force another operating system onto another user is rather immature, and quite frankly very unprofessional. I have left user to user and these

RE: [us...@httpd] Trouble installing on windows 7

2010-01-07 Thread Boyle Owen
-Original Message- From: William Foster [mailto:willia...@gmail.com] Sent: Thursday, January 07, 2010 5:07 AM To: users@httpd.apache.org; comp...@roadrunner.com Subject: Re: [us...@httpd] Trouble installing on windows 7 Hi Wes, Well it was a free copy, so no money to Microsoft

[us...@httpd] Apache Load balancing

2010-01-07 Thread nima chavooshi
Hi I want to implement load balancing for my apache servers. I found some documents about this subject.for example http://www.howtoforge.com/high_availability_loadbalanced_apache_cluster and also about mod_proxy that can load balance between servers. My question is, what differences are there

Re: [us...@httpd] Mod_Rewrite voodoo

2010-01-07 Thread Reese
On 06-Jan-10 15:58, Reese wrote: Hmmm. So adding more specificity, for years 2005-2009 and only for the affected domain, this should work: RewriteCond %{HTTP_HOST} domain\.com RewriteRule (.*)(0[5-9]).html$ /20$2/$1$2.html [R=301,L] I'll test it. It doesn't seem to be working. Testing for

Re: [us...@httpd] Mod_Rewrite voodoo

2010-01-07 Thread Eric Covener
On 1/7/10, Reese howel...@inkworkswell.com wrote: RewriteEngine On RewriteCond %{HTTP_HOST} subdomain\.domain\.ext RewriteRule (.*)(0[5-6]).html$ /20$2/$1$2.html [R=301,L] RewriteEngine Off You don't bookend your rules with on/off. -- Eric Covener cove...@gmail.com

Re: [us...@httpd] Apache Load balancing

2010-01-07 Thread Sushant Gulati
Hi Nima, Can you please elaborate on the basic requirement of setting up your loadbalanced server? Are you looking only for load balancing or high-availability too.? Regards, Sushant On Thu, Jan 7, 2010 at 11:11 AM, nima chavooshi nima0...@gmail.com wrote: Hi I want to implement load

Re: [us...@httpd] Mod_Rewrite voodoo

2010-01-07 Thread Reese
On 07-Jan-10 11:22, Eric Covener wrote: On 1/7/10, Reese howel...@inkworkswell.com wrote: RewriteEngine On RewriteCond %{HTTP_HOST} subdomain\.domain\.ext RewriteRule (.*)(0[5-6]).html$ /20$2/$1$2.html [R=301,L] RewriteEngine Off You don't bookend your rules with on/off. Meaning what,

Re: [us...@httpd] Mod_Rewrite voodoo

2010-01-07 Thread Tom Evans
On Thu, Jan 7, 2010 at 5:18 PM, Reese howel...@inkworkswell.com wrote: On 07-Jan-10 11:22, Eric Covener wrote: On 1/7/10, Reese howel...@inkworkswell.com wrote:  RewriteEngine On  RewriteCond %{HTTP_HOST} subdomain\.domain\.ext  RewriteRule (.*)(0[5-6]).html$ /20$2/$1$2.html [R=301,L]  

Re: [us...@httpd] Mod_Rewrite voodoo

2010-01-07 Thread Reese
On 07-Jan-10 12:24, Tom Evans wrote: http://lmgtfy.com/?q=bookend Oh, thanks. I didn't know what shelfspace keepers were. @@ RewriteEngine Off disables the rewrite engine, so that rewrite rules are not applied. Seems unlikely that is what you intended. From that, I'd agree with you. My

Re: [us...@httpd] Mod_Rewrite voodoo

2010-01-07 Thread Eric Covener
On Thu, Jan 7, 2010 at 12:36 PM, Reese howel...@inkworkswell.com wrote: Do X ...does X ...after doing X Stop doing X I'm missing something here. Maybe it's a terminology issue. Do you mean to say, the RewriteEngine Off directive cancels the Rewrites on earlier lines? On how many earlier

Re: [us...@httpd] Mod_Rewrite voodoo

2010-01-07 Thread Reese
On 07-Jan-10 12:24, Tom Evans wrote: RewriteEngine Off disables the rewrite engine, so that rewrite rules are not applied. Seems unlikely that is what you intended. It would appear that, by removing the RewriteEngine Off line, the bits on the prior 3 lines now work as expected and intended.

Re: [us...@httpd] Mod_Rewrite voodoo

2010-01-07 Thread Tom Evans
On Thu, Jan 7, 2010 at 5:47 PM, Reese howel...@inkworkswell.com wrote: On 07-Jan-10 12:24, Tom Evans wrote: RewriteEngine Off disables the rewrite engine, so that rewrite rules are not applied. Seems unlikely that is what you intended. It would appear that, by removing the RewriteEngine Off

[us...@httpd] Apache Load balancing

2010-01-07 Thread nima chavooshi
Thanks for your reply The main purpose is load balancing. Before any thing I want to know about differences between mod_proxy and load balancing with UltraMonkey. Also I will be happy for giving more solution :) Thanks for more guidance -- N.Chavoshi

Re: [us...@httpd] Mod_Rewrite voodoo

2010-01-07 Thread Patrick Horgan
Reese wrote: RewriteEngine On This says, that I want part of the job of httpd is to do rewrites from this instant until the server is stopped. It's as if a part of httpd is just sitting there, able to do rewrites, but the switch for it is turned off to save power if it's not going to be

[us...@httpd] Apache 2.2 not working with LDAP Fail Over Auth

2010-01-07 Thread Muzammel Asghar
hi Guys I am using apache version Apache/2.2.13 (Unix) on Fedora -11 , and using ldap as url authentications. I setup my conf in -- /etc/httpd/conf.d/mydomain.conf with below values I define only here below the ldap related entries only. LDAPTrustedMode TLS LDAPConnectionTimeout 7 Directory

Re: [us...@httpd] Apache 2.2 not working with LDAP Fail Over Auth

2010-01-07 Thread Eric Covener
On Thu, Jan 7, 2010 at 1:59 PM, Muzammel Asghar muzammel.li...@gmail.com wrote: So please kindly give suggestions , what i need extra to make ldap fail over effective. What LDAP client is Apache linked with, and how does an ldapsearch client behave linked to the same one? What's the LogLevel

Re: [us...@httpd] Mod_Rewrite voodoo

2010-01-07 Thread Reese
On 07-Jan-10 12:58, Tom Evans wrote: http://httpd.apache.org/docs/2.2/mod/mod_rewrite.html#rewriteengine The first line is edifying: The RewriteEngine directive enables or disables the runtime rewriting engine. If it is set to off this module does no runtime processing at all. It does not

Re: [us...@httpd] Mod_Rewrite voodoo

2010-01-07 Thread Reese
On 07-Jan-10 13:08, Patrick Horgan wrote: RewriteEngine Off This says never mind, I didn't mean to hit the switch, let me turn it back off and turn off the rewriting engine so no rewriting will be done as httpd does it's job. I grok. Now, I grok better. ;) Reese

Re: [us...@httpd] Apache 2.2 not working with LDAP Fail Over Auth

2010-01-07 Thread Muzammel Asghar
Hi Eric LDAP Client = apache try to linked with ldap2 if ldap1 fails i submited the conf in which i use ldap auth for apache LDAPTrustedMode TLS LDAPConnectionTimeout 4 Directory /var/www/html/test AuthName Testing Ldap fail over AuthType Basic # The LDAP server(s) AuthLDAPURL

[us...@httpd] Win 64 installation package

2010-01-07 Thread Jorge Hernandez
Does anybody know if there is a 64-bit installation package for Windows of Apache 2.2? I know the win32 version can be installed, but I would like to have it 64-bit version running on 64-bit OS not a 32-bit version on a 64-bit OS. Thanks in advance, -- == Jorge Hernandez

Re: [us...@httpd] Trouble installing on windows 7

2010-01-07 Thread Jonathan Zuckerman
On Thu, Jan 7, 2010 at 5:13 AM, Boyle Owen owen.bo...@six-group.com wrote: -Original Message- From: William Foster [mailto:willia...@gmail.com] Sent: Thursday, January 07, 2010 5:07 AM To: users@httpd.apache.org; comp...@roadrunner.com Subject: Re: [us...@httpd] Trouble

[us...@httpd] help compiling apache 2.2.14 and openssl-0.9.8l using vs2008

2010-01-07 Thread hc
I need to compile apache2.2.14 for windows because of cve-2009-3555. It is my understanding for that problem I need to compile apache with openssl-0.9.8l instead of the previous which was used in the 2.2.14 binary, which was I believe, 0.9.8k. but I ran into a couple questions/issues. so if

Re: [us...@httpd] Win 64 installation package

2010-01-07 Thread Pravesh Rai
AFAIK, there is no official version available, but you can try to build 64 bit version using Cross Compiler tools. Thanks, Pravesh On Fri, Jan 8, 2010 at 1:32 AM, Jorge Hernandez jfh...@gmail.com wrote: Does anybody know if there is a 64-bit installation package for Windows of Apache 2.2? I

Re: [us...@httpd] help compiling apache 2.2.14 and openssl-0.9.8l using vs2008

2010-01-07 Thread Pravesh Rai
Even we had tried this scenario, but there are several (deprecated) files, which are required for building these components, are not bundled with VS 2008. All these issues needs to be looked on case-by-case basis. Thanks, Pravesh On Fri, Jan 8, 2010 at 9:01 AM, hc highcha...@gmail.com wrote: I