AW: Https, mod_proxy and mod_jk

2004-09-22 Thread Steffen Heil
Hi

If you do not have that much SSL traffic, you can use mod_proxy to forward
requests to servlet containers using SSL!
You only need to install a low-bit certificate in your container and make
that certificate accepted by your apache. It can even be self-signed.
However, your container will have request.isSecure() set to true!

But be carefull with high-load sites. Additional SSL will take more cpu
time.
However, running multiple servlet containers seems to be a development
szenario for me, since you would not do all that on one system on a
productive site, would you?

Regards,
  Steffen


smime.p7s
Description: S/MIME cryptographic signature


AW: Https, mod_proxy and mod_jk

2004-09-22 Thread Steffen Heil
Hi

 And I would say the opposite, mod_proxy is great, as a matter of fact, the
next version of it will have the AJP protocol in it, and mod_proxy is proven
to be very stable.

This is great news for me. Is there any date when this will be stable /
public??

 If you are into advanced config, you an use mod_rewrite, its true voodoo,
you can accomplish pretty much anything you want.

No, you cannot use mod_rewrite, if you need *remoteHost* information in your
servlet...
This is a limitation of http which cannot be circumvented.

Regards,
  Steffen


smime.p7s
Description: S/MIME cryptographic signature


Re: AW: Https, mod_proxy and mod_jk

2004-09-22 Thread ALWAYSRIA
How do I unsubscribe? I have done it now 2 times and I still get them!


Re: AW: Https, mod_proxy and mod_jk

2004-09-22 Thread Ben Souther
There are links at the bottom of every message for unsubscribing.

Hint:  If you're sending from an email address other than the one you
signed up with, you may need to enter it manually.

From the directions:
To stop subscription for this address, mail:
[EMAIL PROTECTED]


[reuse]







On Wed, 2004-09-22 at 09:51, [EMAIL PROTECTED] wrote:
 How do I unsubscribe? I have done it now 2 times and I still get them!


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



AW: Https, mod_proxy and mod_jk

2004-09-22 Thread Steffen Heil
Hi

 just use your imagination. I'm sure you can figure out how to pass the
remote host to tomcat, one way or the other, but to say it cannot be
circumvented, thats a little strong :)

You can do that, if you pass parameters, but then you have to change your
webapp, wich is not possible, if you have no control over that.

Regards,
   Steffen


smime.p7s
Description: S/MIME cryptographic signature


AW: Https, mod_proxy and mod_jk

2004-09-22 Thread Steffen Heil
Hi

 (1) how I make a certificate accepted by apache

Hm, I don't know, maybe someone else can answer this.
Try a selfsigned at first.

 (2) how I make mod_proxy redirect requests from port 443 to my tomcat on
port 8443 and request from port 80 to tomcat on port 8080

VirtualHost :443
SSLEngine on
SSLCertificateFile 
SSLCertificateKeyFile 
ServerName 
ProxyRequests Off
ProxyPass / https://127.0.0.1:8443
ProxyPassReverse / https://127.0.0.1:8443
/VirtualHost

VirtualHost :80
ServerName 
ProxyRequests Off
ProxyPass / http://127.0.0.1:8080
ProxyPassReverse / http://127.0.0.1:8080
/VirtualHost


Regards,
  Steffen


smime.p7s
Description: S/MIME cryptographic signature


Re: AW: Https, mod_proxy and mod_jk

2004-09-22 Thread ALWAYSRIA
Thanks Bsouthern but I did that twice about maybe a week ago.

Maria


[OT] UNSUBSCRIBING........Re: AW: Https, mod_proxy and mod_jk

2004-09-22 Thread Ben Souther
And did you then reply to the confirmation email?


On Wed, 2004-09-22 at 14:19, [EMAIL PROTECTED] wrote:
 Thanks Bsouthern but I did that twice about maybe a week ago.
 
 Maria


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]