Rewriting in einer Location

2011-01-20 Thread Daniel Timmerhindrick
Hallo zusammen, ich habe ein Problem mit einer Rewrite-Rule die sich innerhalb einer Location befindet. Location /certcheck SSLVerifyClient require RewriteCond %{SSL:SSL_CLIENT_I_DN} !/CN=TESTCA/O=TEST/C=DE RewriteRule .* - [F] /Location Für alle Requests auf

Re: Rewriting in einer Location

2011-01-20 Thread Rene Lehmann
Hallo Daniel, versuch´s doch einmal ohne die Location: SSLVerifyClient require RewriteCond %{REQUEST_URI} ^/certcheck RewriteCond %{SSL:SSL_CLIENT_I_DN} !/CN=TESTCA/O=TEST/C=DE RewriteRule .* - [F] Mit freundlichen Grüßen / Kind regards Rene Lehmann From: Daniel Timmerhindrick

Antwort: Re: Rewriting in einer Location

2011-01-20 Thread Daniel Timmerhindrick
Hallo Rene, funktioniert leider auch nicht. Und außerdem möchte ich ja das SSLVerifyClient require für eine ganz bestimmte Location setzen. Gruß, Daniel Rene Lehmann rlehm...@timocom.com schrieb am 20.01.2011 16:59:40: Von: Rene Lehmann rlehm...@timocom.com An:

Re: Rewriting in einer Location

2011-01-20 Thread Max Dittrich
Hi, On 20.01.2011 16:51, Daniel Timmerhindrick wrote: ich habe ein Problem mit einer Rewrite-Rule die sich innerhalb einer Location befindet. Location /certcheck SSLVerifyClient require RewriteCond %{SSL:SSL_CLIENT_I_DN} !/CN=TESTCA/O=TEST/C=DE RewriteRule .* - [F] /Location Für alle Requests

[users@httpd] Core dump happens with Apache 2.2.15 using openssl 0.9.8n

2011-01-20 Thread matty roland
Hi All, Below issue i am facing: Core dump happens with Apache 2.2.15. Problem is happening under stress condition of normal http requests along with the additional condition of insecure client renegotiation requests generated. For insecure client renegotiation requests, SSLInsecureRenegotiation

[users@httpd] How to make apache httpd load balancer sends to a member that is in Err.

2011-01-20 Thread James Harrison
Hello. This is quite an urgent plea for help. I am using apache httpd 2.2.17 on Windows 2008 server as a gateway to our backend systems. The backend are two IBM's Websphere Message Broker (v7) system, that uses SOAP messages to send information back and forth. There are two hosts (machines)

[users@httpd] Re: Core dump happens with Apache 2.2.15 using openssl 0.9.8n

2011-01-20 Thread matty roland
Further to my problem mentioned below, I found possible flaw in Apache 2.2.15, which is mentioned below: It is found with gdb that it is getting SIGSEGV as a result of accessing memory that is already free()ed. After looking at the source code, possible root cause is mentioned below: Here is

Re: [users@httpd] Re: Core dump happens with Apache 2.2.15 using openssl 0.9.8n

2011-01-20 Thread Jeff Trawick
On Thu, Jan 20, 2011 at 12:54 PM, matty roland matty.rola...@gmail.com wrote: Further to my problem mentioned below, I found possible flaw in Apache 2.2.15, which is mentioned below: post to d...@httpd.apache.org now, or at least if a couple of days go by with no response, open a bug

[users@httpd] mod_rewrite woes

2011-01-20 Thread --[ UxBoD ]--
Hello all, I am switching from LiteSpeed webserver to Apache and having a real issue with mod_rewrite. First of all here are the details of apache: Server version: Apache/2.2.17 (Unix) Server built: Jan 20 2011 16:15:22 Server's Module Magic Number: 20051115:25 Server loaded: APR 1.4.2,

Re: [users@httpd] mod_rewrite woes

2011-01-20 Thread Eric Covener
Did you set RewriteEngine on? Where do you define your rules? If there's a VirtualHost handling the request, they need to be defined there. - The official User-To-User support forum of the Apache HTTP Server Project. See

Re: [users@httpd] mod_rewrite woes

2011-01-20 Thread --[ UxBoD ]--
- Original Message - Did you set RewriteEngine on? Where do you define your rules? If there's a VirtualHost handling the request, they need to be defined there. Hello Eric, Thank you for the response. Yes it is a virtual host and I am using the following directives for it:

Re: [users@httpd] mod_rewrite woes

2011-01-20 Thread Eric Covener
On Thu, Jan 20, 2011 at 3:10 PM, --[ UxBoD ]-- ux...@splatnix.net wrote: - Original Message - Did you set RewriteEngine on? Where do you define your rules? If there's a VirtualHost handling the request, they need to be defined there. Hello Eric, Thank you for the response. Yes it

Re: [users@httpd] mod_rewrite woes

2011-01-20 Thread --[ UxBoD ]--
- Original Message - On Thu, Jan 20, 2011 at 3:10 PM, --[ UxBoD ]-- ux...@splatnix.net wrote: - Original Message - Did you set RewriteEngine on? Where do you define your rules? If there's a VirtualHost handling the request, they need to be defined there. Hello

Re: [users@httpd] mod_rewrite woes

2011-01-20 Thread Eric Covener
What RewriteLogLevel is that? Try 9. On Thu, Jan 20, 2011 at 3:23 PM, --[ UxBoD ]-- ux...@splatnix.net wrote: - Original Message - On Thu, Jan 20, 2011 at 3:10 PM, --[ UxBoD ]-- ux...@splatnix.net wrote: - Original Message - Did you set RewriteEngine on? Where do you

Re: [users@httpd] mod_rewrite woes

2011-01-20 Thread --[ UxBoD ]--
- Original Message - What RewriteLogLevel is that? Try 9. On Thu, Jan 20, 2011 at 3:23 PM, --[ UxBoD ]-- ux...@splatnix.net wrote: - Original Message - On Thu, Jan 20, 2011 at 3:10 PM, --[ UxBoD ]-- ux...@splatnix.net wrote: - Original Message - Did you set

Re: [users@httpd] mod_rewrite woes

2011-01-20 Thread Eric Covener
you have rules in htaccess subverting your rules in httpd.conf. - The official User-To-User support forum of the Apache HTTP Server Project. See URL:http://httpd.apache.org/userslist.html for more info. To unsubscribe, e-mail:

Re: [users@httpd] mod_rewrite woes

2011-01-20 Thread Joost de Heer
On 01/20/2011 09:00 PM, --[ UxBoD ]-- wrote: Hello all, Now the issue comes when I am trying to redirect a domain URL in the following formats: http://somedomain.com http://somedomain.co.uk http://www.somedomain.co.uk and wish them all to be re-written as: http://www.somedomain.com I

Re: [users@httpd] mod_rewrite woes

2011-01-20 Thread --[ UxBoD ]--
- Original Message - you have rules in htaccess subverting your rules in httpd.conf. Hmm, in httpd.conf I have the following directives for the root directory: # Directory / Options None AllowOverride None Order deny,allow Deny from all /Directory # # Note that from

Re: [users@httpd] mod_rewrite woes

2011-01-20 Thread Björn Zettergren
On 01/20/2011 09:10 PM, --[ UxBoD ]-- wrote: - Original Message - Did you set RewriteEngine on? Where do you define your rules? If there's a VirtualHost handling the request, they need to be defined there. VirtualHost *:80 ServerAdmin webmas...@somedomain.com DocumentRoot

Re: [users@httpd] mod_rewrite woes

2011-01-20 Thread Björn Zettergren
On 01/20/2011 09:59 PM, Björn Zettergren wrote: As Eric wrote, you need to put your Rewrites inside the VirtualHost directive, i don't see them there in the above snippet. Possibly the RewriteEngine On needs to go there too. /Björn Cheez, i failed to fetch all the latest messages before i

[users@httpd] Apache 2.2.17 installer without internet connection

2011-01-20 Thread go1008
I can't find a place to download an Apache 2.2.17 binary with OpenSSL without MSI installer. I will need to repeat the process many times and may use it on computers without Internet connection. Currently the download link - http://httpd.apache.org/download.cgi, only has a MSI installer requiring

Re: [users@httpd] How to make apache httpd load balancer sends to a member that is in Err.

2011-01-20 Thread James Harrison
Hello. Does anyone have an idea what I need to do to fix my problems? I'm completely clueless how to fix my problems. Thanks, James Harrison From: James Harrison jamesaharriso...@yahoo.co.uk To: users@httpd.apache.org Sent: Thu, January 20, 2011 9:28:42 AM

[users@httpd] Re: Apache2+LDAP authentication problem

2011-01-20 Thread Tomas Pelka
Dooh sorry something wrong happen during post sending I have some problem with LDAP authentication. Always when I'm trying to authenticate Apache: [Fri Jan 21 15:48:00 2011] [error] [client xx.xx.xx.xx] client used wrong authentication scheme: /~tom/download/ [Fri Jan 21 15:48:12 2011] [warn]

Re: [users@httpd] Apache 2.2.17 installer without internet connection

2011-01-20 Thread William A. Rowe Jr.
On 1/20/2011 3:50 PM, go1...@mailnew.com wrote: I can't find a place to download an Apache 2.2.17 binary with OpenSSL without MSI installer. I will need to repeat the process many times and may use it on computers without Internet connection. Currently the download link -

Re: [users@httpd] mod_rewrite woes

2011-01-20 Thread Mark Wiltshire
Hi UxBoDCan you confirm you haveRewriteCondRewriteRulefor each of you domains, I believe if you write multiple RewriteCond, they all have to match for the Rule then to be run.Try in separate pairs.RMarkOn 20 Jan 2011, at 20:00, --[ UxBoD ]-- wrote:Hello all,I am switching from LiteSpeed webserver