I would recommend using Apache to handle the ssl connections for you.
I've been using apache as the ssl connection point in our production
environment and using mod_jk to send things on to tomcat.
I had tried using the ssl connector bundled with tomcat, but after awhile,
it just seemed to reach a point where it no longer served up web pages.
Perhaps it was just a config thing... At any rate, if you've already got
apache ssl working correctly, you just have to add a line to your conf
file:
Before:
<Files ~ "\.(cgi|shtml|phtml?)$">
SSLOptions +StdEnvVars
</Files>
After:
<Files ~ "\.(cgi|shtml|jsp|phtml|php3?)$">
SSLOptions +StdEnvVars
</Files>
Good Luck!
- Dan -
> Hi all,
>
> I'm new to this list and although I read the instructions on how to use
> the list, I'd like to apologize in advance if I ever misuse the list!
>
> ---------
> |Question|
> ---------
> I'm currently working on security with Apache Tomcat and openssl under
> Windows 2000. I'd like to set up Tomcat to be able to use it with SSL. I
> installed openssl on Windows and I'm now trying to create a CA and
> certificates.
>
> How am I exactly supposed to configure Tomcat and how does it relate to
> openssl? Did I even need to download openssl in the first place?
> Instructions on the web are unclear and several relate to older versions
> of Tomcat. (I'm running Tomcat 5.0.25).
>
> Thanks to all,
> David.
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]