Re: [us...@httpd] SSLProtocol vs SSLCipherSuite

2009-08-01 Thread Matus UHLAR - fantomas
On 27.07.09 09:02, Capstone wrote: > Specifically, will SSLCipherSuite directive take precedence over the > SSLProtocol directive? no. > If I have omitted the SSLProtocol directive entirely. But I have > something like this in my SSLCipherSuite directive, > > SSLCipherSuite TLSv1:SSLv3:+HIGH

Re: [us...@httpd] apache problems with number of cgi requests

2009-08-01 Thread André Warnier
Digvijoy Chatterjee wrote: I already tried that and it does not help . Ok then. What you report is of course not the way it should work. If Apache was always working that way, then half the hundreds of thousands of Apache servers on this planet woould be on their knees, including mine. And

Re: [us...@httpd] apache problems with number of cgi requests

2009-08-01 Thread Digvijoy Chatterjee
I already tried that and it does not help . On Sat, Aug 1, 2009 at 4:34 PM, André Warnier wrote: > Digvijoy Chatterjee wrote: >> >> Ok so mod_status helped me make an interesting observation : >> >> There is only one child picking up the request for sleep.cgi when i >> launch it new in new tabs/

Re: [us...@httpd] Forcing URL Rewrite before Proxy pass

2009-08-01 Thread André Warnier
/U wrote: Thanks Andre and Jorge. I combined your suggestions to arrive at the following: ProxyRequests Off BalancerMember http://server:8080/ Redirect /securehttps://server/secure ProxyPass /secure balancer://clu

Re: [us...@httpd] apache problems with number of cgi requests

2009-08-01 Thread André Warnier
Digvijoy Chatterjee wrote: Ok so mod_status helped me make an interesting observation : There is only one child picking up the request for sleep.cgi when i launch it new in new tabs/ new windows, rest are children all waiting, and picking the next requests when this one gets done . I will repe

Re: [us...@httpd] Forcing URL Rewrite before Proxy pass

2009-08-01 Thread /U
Thanks Andre and Jorge. I combined your suggestions to arrive at the following: ProxyRequests Off BalancerMember http://server:8080/ Redirect /securehttps://server/secure ProxyPass /secure balancer://clusterx/

Re: [us...@httpd] apache problems with number of cgi requests

2009-08-01 Thread Digvijoy Chatterjee
Ok so mod_status helped me make an interesting observation : There is only one child picking up the request for sleep.cgi when i launch it new in new tabs/ new windows, rest are children all waiting, and picking the next requests when this one gets done . Srv PID Acc M CPU S

[us...@httpd] Re: Don't require authentication on a subfolder

2009-08-01 Thread Nicholas Sherlock
André Warnier wrote: If that is still not entirely clear, here is a summary : - the Windows filesystem, in terms of locatiing directories and filenames, is case-insensitive. In other words, "/dir" and "/DIR" and "/Dir" all lead to same place. - the Apache directive applies to the URL, and IS

Re: [us...@httpd] Forcing URL Rewrite before Proxy pass

2009-08-01 Thread Jorge Schrauwen
If you want to go SSL here is an easier way to check for SSL RewriteEngine On RewriteCond %{HTTPS} !=on [NC] RewriteRule ^/secure(.*) https://%{SERVER_NAME}/secure$1 [R,L] You way also want to look at the P flag to proxy the request. http://httpd.apache.org/docs/2.2/mod/mod_rewrite.html#rewritefl

Re: [us...@httpd] Forcing URL Rewrite before Proxy pass

2009-08-01 Thread André Warnier
/U wrote: Apache: 2.2.0 I need to a) require SSL on requests to /secure (i.e., http://server/secure -> https://server/secure) b) and as the second step, offload (proxy) https://server/secure to http://server:8080/secure I don't know the details, but the following may work : You may need