[users@httpd] httpd2.2 mod_headers, need a directive for manipulate headers of non-success (non-2xx) responses

2013-02-12 Thread Csaba Kecse-Nagy
Hello, I would like to construct a directive in my httpd.conf file that is for all non-success responses of my site. In the following link http://httpd.apache.org/docs/2.2/mod/mod_headers.html#Header there is a sentence which would be perfect if I could set: "You're adding a header to a non-succes

Re: [users@httpd] Very confused about Re-negotiation request failed (and SSLInsecureRenegotiation)

2013-02-12 Thread Denis BUCHER (lists)
Dear Ed, What's surprising me is that I got more than 10% of users complaining they can't access our webserver. Are so many people equipped with outdated browsers ? Denis Le 11.02.2013 09:33, Edward Quick a écrit : Hi Denis, I've been through exactly the same situation. There isn't anything

RE: [users@httpd] Very confused about Re-negotiation request failed (and SSLInsecureRenegotiation)

2013-02-12 Thread Edward Quick
That doesn't surprise me to be honest. I would say it was a similar number in my case as well, It's a tricky one to manage because it's not easy to explain to customers.I tried to find an alternative solution but there wasn't one, and so passed the problem back to the customers/windows admins

Re: [users@httpd] moving from mod_php to mod_fcgid : rewrite problem

2013-02-12 Thread Ben Johnson
On 2/12/2013 2:16 AM, Riccardo Cohen wrote: > Hello > I received some clues from this list members, thanks for that. But > unfortunately my problem is not solved. > > It's not that I want others to focus on me, but I'm quite sure that > there is a real problem (if not why would it work perfectly

Re: [users@httpd] enable priority and bybusyness feilds in balancer-manger gui

2013-02-12 Thread Jeff Trawick
On Tue, Feb 12, 2013 at 6:24 AM, aparna Puram wrote: > Hello All, > > Can any one please suggest me on how to enable the priority and bybusyness > feilds in blancer-manager gui? > I'm not exactly sure what you mean by priority. For bybusyness that's the number of busy workers and, in case of a

Re: [users@httpd] moving from mod_php to mod_fcgid : rewrite problem

2013-02-12 Thread Riccardo Cohen
Thanks Ben, here are the answers : > 1.) Where have you defined the rewrite rule? In a .htaccess file? in .htaccess > 2.) Have you defined a RewriteBase? If so, what is it? no change with or without > 3.) Have you reviewed Apache's access log at all? I'll have a look now > 4.) Have you incr

Re: [users@httpd] moving from mod_php to mod_fcgid : rewrite problem

2013-02-12 Thread Ben Johnson
On 2/12/2013 10:59 AM, Riccardo Cohen wrote: > Thanks Ben, here are the answers : > >> 1.) Where have you defined the rewrite rule? In a .htaccess file? > > in .htaccess > >> 2.) Have you defined a RewriteBase? If so, what is it? > > no change with or without > >> 3.) Have you reviewed Apach

Re: [users@httpd] Proxy Config Problem

2013-02-12 Thread Chris Arnold
This is from a wireshark packet capture: 41 4.087378 8.25.230.32 192.168.123.3 TCP 49284 > https [RST, ACK] Seq=1456 Ack=1051 Win=0 Len=0 Does this look like apache proxy is sending the RST and closing the connection? - Original Message - From: "Chris Arnold" To: users@httpd.apache

Re: [users@httpd] Apache Module mod_authn_socache: AuthnCacheSOCache not allowed here (and other problems)

2013-02-12 Thread Ben Johnson
On 2/11/2013 3:00 PM, Ben Johnson wrote: > > > On 2/11/2013 2:38 PM, Nick Kew wrote: >> >> On 11 Feb 2013, at 18:43, Ben Johnson wrote: >> >>> The documentation provides a sample configuration snippet ( >>> http://httpd.apache.org/docs/current/mod/mod_authn_socache.html ): >> >> Whoops! You fo

Re: [users@httpd] moving from mod_php to mod_fcgid : rewrite problem

2013-02-12 Thread Riccardo Cohen
Hi Ben I tried without the dot : RewriteRule ^en/(.*) index.php/en/$1 but it gave also an error 404. These are all my tests : (available at http://www.perspectives-musicales.org/test1/a/b/c etc.) RewriteRule ^test1/(.*) ./test.php/$1 # = error 404 RewriteRule ^test2/(.*) ./test.php?$1 # = p

[users@httpd] Graceful Restart fails because of SSL Keys with Passphrase?

2013-02-12 Thread Shahriar Aghajani
Hi, I have apache servers with SSL keys which require pass-phrases. Until recently (maybe a year ago), if I restarted apache gracefully, it kept the old passwords and didn't ask for new ones. But now, it complains and doesn't restart. And this doesn't happen all the time either. Sometimes gra

Re: [users@httpd] httpd2.2 mod_headers, need a directive for manipulate headers of non-success (non-2xx) responses

2013-02-12 Thread Igor Cicimov
On 12/02/2013 7:42 PM, "Csaba Kecse-Nagy" wrote: > > Hello, > > I would like to construct a directive in my httpd.conf file that is for all non-success responses of my site. > In the following link http://httpd.apache.org/docs/2.2/mod/mod_headers.html#Header there is a sentence which would be perf

Re: [users@httpd] Graceful Restart fails because of SSL Keys with Passphrase?

2013-02-12 Thread Walter H.
Hello, you need either SSLPassPhraseDialog or remove the passphrase; On Tue, February 12, 2013 21:56, Shahriar Aghajani wrote: > Any ideas? Leads? > > I've seen people recommending removing the passphrase or using > SSLPassPhraseDialog. But I'd prefer to use pass-phrases and graceful > restart

Re: [users@httpd] enable priority and bybusyness feilds in balancer-manger gui

2013-02-12 Thread aparna Puram
Hello Jeff, Thanks a ton for the quick response. I am looking for a output as following : tickySessionTimeout FailoverAttemptsMethod JSESSIONID|jsessionid 0 1 bybusyness Worker URL Route RouteRedir Priority Factor Set Status BusynessElected

RE: [users@httpd] httpd2.2 mod_headers, need a directive for manipulate headers of non-success (non-2xx) responses

2013-02-12 Thread kecsole...@gmail.com
Thank you for your answer. I'm aware of values of status code header. I just do not know how to construct a directive that works upon non successful ones. Some sites write that the combination of always and onsuccess conditions of Header would work but in case of ProxyPass former does not work.