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

2009-08-19 Thread Toadie
Not quite sure what you want to achieve even though the question is semi-clear. If your real intention is to disallow SSLv2 (which you should in this day and age) and only support SSLv3 and above, you could do this SSLProtocol -ALL +SSLv3 +TLSv1 then follow by ciphers suite e.g. SSLCipherSuit

[us...@httpd] mod_rewrite - RewriteLog directive in Apache 2.2.X: support for UNC paths ?

2009-07-06 Thread Toadie
common CustomLog "|bin/rotatelogs.exe -l -f //corpfile/apps/ApacheLogs/access.log 43200" common It looks like RewriteLog is still creating log files relative to server root.. I am wondering whether this is by design or it's something that was missed ? Thanks Toadie. -- mod_rewrite.c --

Re: [EMAIL PROTECTED] Apache and client certs

2006-12-29 Thread toadie D
It is possible to use reverse proxy to pass a PEM Encoded Certificate as a HTTP header to a backend server. Make sure you have this directive in your config file SSLOptions +ExportCertData Then use mod_headers to set the header RequestHeader MY_CLIENT_CERT %{SSL_CLIENT_CERT}s You can find m

Re: [EMAIL PROTECTED] Selectively forward trafic from Apache to Tomcat

2006-11-29 Thread toadie D
I think you could do that via mod_rewrite RewriteRule ^/project/(.*)/dynamic/(.*) http://tomcat/project/$1/dynamic/$2 [proxy,last] RewriteRule ^/project/(.*) http://apache/project/$1 [passthrough,last] You also need to define a Requests like this: http://localhost/project/com/project

Re: [EMAIL PROTECTED] How to send WHOLE SSL_CLIENT_CERT in reverse proxy?

2006-11-22 Thread toadie D
If not, is there some simple way to yank out the new lines in SSL_CLIENT_CERT on the reverse proxy? Which apache version are you using ? http://issues.apache.org/bugzilla/show_bug.cgi?id=23223 http://issues.apache.org/bugzilla/show_bug.cgi?id=19405 http://issues.apache.org/bugzilla/show_bug.cgi

Re: [EMAIL PROTECTED] step by step instructions for compiling Apache under Windows

2006-11-03 Thread toadie D
are running the debug build, you have to do > the -same thing- > only you will find the debug MSVC runtime in your > product tree, again, > just install it. > > > toadie D wrote: > > look for dir > > > > > > > %WINDOWS%\WinSxS\x86_Microsoft.VC80.CRT_1fc8

Re: [EMAIL PROTECTED] step by step instructions for compiling Apache under Windows

2006-11-03 Thread toadie D
look for dir %WINDOWS%\WinSxS\x86_Microsoft.VC80.CRT_1fc8b3b9a1e18e3b_8.0.50727.42_x-ww_0de06acd and the equivalent %WINDOWS\WinSxS\manifests\[same name as above] put the DLL as well as a copy of the manifest inside your bin dir. Here's a manifest that works on Win2K SP4 ===

Re: [EMAIL PROTECTED] Sending 2+ GIG data via mod_proxy hangs Apache 2.2.3 with 100% CPU.

2006-11-03 Thread toadie D
2 GIG using HTTP Post with content-type = application/octet-stream I am wondering if large file supports are also avail. on Windows or is it only a Unix feature. Thanks On 11/3/06, Pid <[EMAIL PROTECTED]> wrote: 2 gig of what, sorry? toadie D wrote: > Environment: >

[EMAIL PROTECTED] Sending 2+ GIG data via mod_proxy hangs Apache 2.2.3 with 100% CPU.

2006-11-02 Thread toadie D
in up its CPU and just hangs. We have verified that sending directly to Tomcat posed no issues. I am wondering if anyone else has seen this behavior. Thanks Toadie. - The official User-To-User support forum of the Apache HT

[EMAIL PROTECTED] Apache 2.2.3 , Cronolog 1.6.X on Win2K

2006-10-29 Thread toadie D
t you shouldn't need to recompile . Any help/hints/directions would be much appreciated I have also looked at mod_log_rotate but that does not support rotating Error Logs. Thanks Toadie - The official User-To-User support fo