Re: [users@httpd] Problem with MPM Setting

2013-02-08 Thread Nick Kew
On Thu, 7 Feb 2013 23:40:50 -0600 yogesh hingmire yogesh.hingm...@gmail.com wrote: $ httpd -V Am i missing something 'which httpd' If that doesn't have you kicking yourself, you need to get to grips with the operating system concept of paths. -- Nick Kew

Re: [users@httpd] response with 400 when URI params are malformed

2013-02-08 Thread Jakub Nieznalski
Hi, Thanks for the reply. It looks that Apache is handling the malformed params properly, but not with phusion passenger module. I've already created an issue on PP project. If this will not get resolved I will create a simple rule with mod_taint Best regards Jakub Nieznalski 2013/2/5 Nick Kew

[users@httpd] LoadBalancingIssue - Users are not distributed equally among users

2013-02-08 Thread aparna Puram
Hello All, We have a apache server that acts as a load balancer for 6 backend tomcat servers. However, If I compare the load on all the servers, there is a drastic difference between the no of hits on all the servers. We are using lbmethod =bybusyness. Please help, If there are any tools to

Re: [users@httpd] LoadBalancingIssue - Users are not distributed equally among users

2013-02-08 Thread Jim Jagielski
How are you measuring the load on the backend Tomcats? On Feb 8, 2013, at 7:57 AM, aparna Puram aparnapu...@gmail.com wrote: Hello All, We have a apache server that acts as a load balancer for 6 backend tomcat servers. However, If I compare the load on all the servers, there is a

[users@httpd] RewriteRule problem

2013-02-08 Thread Coughlin, Michael J
The request: www.mysite.com/testing123 The rule: RewriteRule ^(testing.*)$ test.php?req=$1 [NC,L] test.php properly renders the querystring req=testing123 (its only purpose to verify the querystring) BUT, RewriteRule ^(t.*)$ test.php?req=$1 [NC,L] gives me: req=test.php. I don't get it.

Re: [users@httpd] RewriteRule problem

2013-02-08 Thread Boubouch
Hi, Could you try this RewriteRule ^(testing.*)$ test.php?req=$1 [NC,END] Le 8 févr. 2013 à 22:19, Coughlin, Michael J michael.cough...@opm.gov a écrit : The request: www.mysite.com/testing123 The rule: RewriteRule ^(testing.*)$ test.php?req=$1 [NC,L] test.php properly renders

RE: [users@httpd] RewriteRule problem

2013-02-08 Thread Coughlin, Michael J
END is not a valid flag. That generates a server error. From: Boubouch [boubouc...@gmail.com] Sent: Friday, February 08, 2013 4:46 PM To: users@httpd.apache.org Cc: users@httpd.apache.org Subject: Re: [users@httpd] RewriteRule problem Hi, Could you try

Re: [users@httpd] RewriteRule problem

2013-02-08 Thread Boubouch
Sorry i mean RewriteRule ^(t.*)$ test.php?req=$1 [NC,END] The flags END are stronger than L and may be you loop from testing123 to test.php both matching Le 8 févr. 2013 à 22:46, Boubouch boubouc...@gmail.com a écrit : Hi, Could you try this RewriteRule ^(t.*)$ test.php?req=$1

[users@httpd] Proxy Config Problem

2013-02-08 Thread Chris Arnold
I am trying to proxy a connection from ifolder client to our ifolder server. Here are the proxypass statements: ProxyPass /ifolder https://192.168.123.4/ifolder ProxyPassReverse /ifolder https://192.168.123.4/ifolder With just those statements, i get these errors in the apache

RE: [users@httpd] RewriteRule problem

2013-02-08 Thread Coughlin, Michael J
What a disaster, the htaccess rules run twice. no wonder. It's easy enough to catch on a second pass now that I know what's happening, but this little subtle point could be made a BIG point in the apache documentation for htaccess. Thanks for the clue about the repass.

[users@httpd] internal redirects in httpd.conf

2013-02-08 Thread Coughlin, Michael J
I had many rewrite rules in .htaccess. I discovered they were being reevaluated with an internal direct after a rewrite. I also read that this does not happen if you place the rules in the httpd.config file. So I did, I killed the .htaccess file to be sure, and sure enough, the internal

Re: [users@httpd] internal redirects in httpd.conf

2013-02-08 Thread Eric Covener
On Fri, Feb 8, 2013 at 9:23 PM, Coughlin, Michael J michael.cough...@opm.gov wrote: I had many rewrite rules in .htaccess. I discovered they were being reevaluated with an internal direct after a rewrite. I also read that this does not happen if you place the rules in the httpd.config file.

Re: [users@httpd] internal redirects in httpd.conf

2013-02-08 Thread Eric Covener
On Fri, Feb 8, 2013 at 9:28 PM, Eric Covener cove...@gmail.com wrote: On Fri, Feb 8, 2013 at 9:23 PM, Coughlin, Michael J michael.cough...@opm.gov wrote: I had many rewrite rules in .htaccess. I discovered they were being reevaluated with an internal direct after a rewrite. I also read that

RE: [users@httpd] internal redirects in httpd.conf

2013-02-08 Thread Coughlin, Michael J
I care because I have to test again at the top of the rules for the rewritten URIs to say ok their fine now, get out, or they get screwed up by the re-evluation of the same rules for some instances. I have read further that I need to place the rules inside a VirtualHost to prevent this, I