Re: [users@httpd] Re-negotiation handshake failed: Not accepted by client!?

2012-04-06 Thread Milan Tomic
If I remove OptRenegotiate, it doesn't change anything. Behaviour is still the same. If I remove SSLVerifyClient, then it works fine and there is no 403 error any more. Best regards, Milan

Re: [users@httpd] Re-negotiation handshake failed: Not accepted by client!?

2012-04-04 Thread Milan Tomic
I have zipped my Apache HTTP Server config files, if you could take a look. Perhaps I have misused some directive? Here it is: http://www.2shared.com/file/DIvWXbcC/SSL.html

Re: [users@httpd] Re-negotiation handshake failed: Not accepted by client!?

2012-04-04 Thread Milan Tomic
Thank you very much Daniel for your response. "openssl version" outputs: OpenSSL 1.0.0-fips 29 Mar 2010 Real HTTP error code is 403. I have somehow misreplaced it with default SSL port (443). OpenSSL version seems to be right, is there a hope for solving my problem? Milan

[users@httpd] Re-negotiation handshake failed: Not accepted by client!?

2012-04-04 Thread Milan Tomic
I have searched web with Google many times, but I couldn't find a solution. I hope here I will have more luck. I have apache 2.2.15 which requires client to have certificate. In FF 11 everything works fine. But, in IE9, when I open my web page, sometimes I got HTTP 443 error on SOME web page reso

Re: [users@httpd] Map URL to directory

2011-10-21 Thread milan tomic
Documentation says: "Note however sections are run through once before aliases are performed, so they will apply." but it doesn say how to fix it :( What should I use instead? -- View this message in context: http://old.nabble.com/Map-URL-to-directory-tp32694522p32698179.html Sent from the Ap

Re: [users@httpd] Map URL to directory

2011-10-21 Thread milan tomic
Pete Houston wrote: > > Most likely what you are after is the "Alias" directive. > Yes, Alias is what I need. But it doesn't work for me. I have this case: DocumentRoot "D:/Dir1/Dir2" ProxyPass http://tomcat1/MainPath/App1 Alias /MainPath/AL "D:\Dir3\Dir4" Order allow,deny Allo

[users@httpd] Map URL to directory

2011-10-21 Thread milan tomic
This is very simple question: what should I do in httpd.conf to map some URL to the file system directory? I need something like this: ProxyPass D:\myDir\mySubDir Apache 2.2 on Win 2003 Server. I've been reading , and documentation and I haven't found any example. -- View this message in

Re: [us...@httpd] VirtualHost & Location

2010-03-16 Thread Milan Tomic
I have also tried LocationMatch: ProxyPass http://www.yahoo.com/ and ProxyPass http://www.yahoo.com/ but without success. I need to match if there is anything behind slash / TIA - Original Message From: Milan Tomic To: users@httpd.apache.org Sent: Wed, March 17, 2010 12

Re: [us...@httpd] VirtualHost & Location

2010-03-16 Thread Milan Tomic
> Why are you using ProxyPass ? You can use Redirect if don't want to mask > that content is coming from your server (and of course save your bandwidth). I have tried this: ProxyPass http://localhost:8082/SomeUrl/ Redirect /SomeUrl/index.html http://www.google.com Redirect /SomeUrl http:

[us...@httpd] VirtualHost & Location

2010-03-16 Thread Milan Tomic
Good day, How can I (if it is possible at all) specify that all requests to: /SomeUrl /SomeUrl/ /SomeUrl/index.html go to one location and all other requests like /SomeUrl/somePage.html go to the other location? I have started editing httpd.conf like this: ProxyPass http://www.google.com

[us...@httpd] Forwarding a file, not whole directory

2010-03-15 Thread Milan Tomic
Hi everybody, Some hand is needed here... :) How can I specify, that request to one file should be redirected? I have this: ProxyPass ajp://localhost:8010/MyApp/ and now I would like to add this (request to single file to be redirected to THE OTHER tomcat): ProxyPass aj

Re: [us...@httpd] Worker inside ProxyPass

2010-03-11 Thread Milan Tomic
> Try posting logs, netstat, server-status, etc to illustrate the current > problem. What does this log entry means: "proxy: AJP: disabled connection for (localhost)" Does it affect both Tomcats since port is not specified? TIA, Milan --

Re: [us...@httpd] Worker inside ProxyPass

2010-03-11 Thread Milan Tomic
> You can't tell Apache to use one type of reverse proxy until it stops > working then switch to another type. I wasn't trying this. My problem is: I have HTTPD as front end and 2 Tomcats running different apps behind HTTPD. When one Tomcat runs out of memory, HTTPD stops working and doens't f

Re: [us...@httpd] Worker inside ProxyPass

2010-03-11 Thread Milan Tomic
> It sounds like you possibly want to configure a balancer, maybe a > hot-standby. You might want to look at implementing the ProxyPass > 'ping' parameter for checking for hung or busy Tomcats. Sample > balancer config, etc. is all in the docs:- > http://httpd.apache.org/docs/2.2/mod/mod_proxy.

Re: [us...@httpd] Worker inside ProxyPass

2010-03-11 Thread Milan Tomic
Sent: Thu, March 11, 2010 1:02:49 PM Subject: Re: [us...@httpd] Worker inside ProxyPass On 11 March 2010 11:28, Milan Tomic wrote: > > I have in my htpd.conf: > > > ProxyPass /Context1 ajp://localhost:8008/Context1 > ProxyPass /Context2 ajp://localhost:8008/Context2 > > >

Re: [us...@httpd] Worker inside ProxyPass

2010-03-11 Thread Milan Tomic
can use JkMount together with ProxyPass as above? Thank you in advance, Milan - Original Message From: Milan Tomic To: users@httpd.apache.org Sent: Thu, March 11, 2010 11:21:34 AM Subject: [us...@httpd] Worker inside ProxyPass Hi, Some help needed here... Is it possible somehow to

[us...@httpd] Worker inside ProxyPass

2010-03-11 Thread Milan Tomic
Hi, Some help needed here... Is it possible somehow to specify which worker will be used by which context specified with ProxyPass directive? Thank you in advance, Milan - The official User-To-User support forum of t

[EMAIL PROTECTED] SSLCACertificatePath option

2006-09-12 Thread Milan Tomic
Have anyone succeeded to run mod_ssl Makefile on Windows platform, to make hash file links? How can I do that? __ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com --

[EMAIL PROTECTED] SSLCACertificateFile

2006-09-06 Thread Milan Tomic
Is it possible to specify SSLCACertificateFile command several times in ssl.conf (for each Location)? I would like to tell Apache which certs to let come in depending on location. Example: a) into www.myserver.org/app1 let users which have certs issued from CA1 or CA2 b) into www.myserver.org/a

[EMAIL PROTECTED] REPOST: SSL: Forwarding user certificate from apache to another server

2006-09-06 Thread Milan Tomic
--- Milan Tomic <[EMAIL PROTECTED]> wrote: Users log into apache through SSL and I'm forwarding user cert from apache to (another) app server. The problem is that user cert, which is sent as HTTP header param (base64 encoded), spans several lines: GET /LoginTest/servletheaderview HT

[EMAIL PROTECTED] SSL negotiation fails

2006-08-31 Thread Milan Tomic
Is there any way to redirect user to some HTML page if HTTPS (SSL) negotiation fails (e.g. user press CANCEL button on "Select Certificate" dialog)? At present generic "The page can not be found" message shows. I think this is IE's built-in message. _

[EMAIL PROTECTED] REPOST [EMAIL PROTECTED] SSL: Forwarding user certificate from apache to another server

2006-08-30 Thread Milan Tomic
--- Milan Tomic <[EMAIL PROTECTED]> wrote: > > Users log into apache through SSL and I'm forwarding user cert from apache to > (another) app > server. The problem is that user cert, which is sent as HTTP header param > (base64 encoded), > spans > se

[EMAIL PROTECTED] SSL: Forwarding user certificate from apache to another server

2006-08-30 Thread Milan Tomic
Users log into apache through SSL and I'm forwarding user cert from apache to (another) app server. The problem is that user cert, which is sent as HTTP header param (base64 encoded), spans several lines: GET /LoginTest/servletheaderview HTTP/1.1 Host: duke: Accept: */* Accept-Language: sl