Re: SSL Doesn't Stay SSL

2004-03-10 Thread Alex
all the images and all content must be provided from the https link or else you'll loose the lock. On Wed, 10 Mar 2004, John Thompson wrote: Date: Wed, 10 Mar 2004 08:58:34 -0600 From: John Thompson [EMAIL PROTECTED] Reply-To: Tomcat Users List [EMAIL PROTECTED], [EMAIL PROTECTED] To:

RE: SSL Doesn't Stay SSL

2004-03-10 Thread AMELIN Franck
Try to force the use of https on the server : RewriteEngine on RewriteLog logs/rewrite.log RewriteCond %{SERVER_PORT} ^80$ RewriteRule ^/(.*)$ https://%{SERVER_NAME}/$1 [R,L] In you're file httpd2.conf. -Message d'origine- De :John Thompson [mailto:[EMAIL PROTECTED] Envoyé :

RE: SSL Doesn't Stay SSL

2004-03-10 Thread John Thompson
still have the same problem. I don't want to force all virtual hosts to use SSL, just this one servlet called app. -Original Message- From: AMELIN Franck [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 10, 2004 9:29 AM To: 'Tomcat Users List'; [EMAIL PROTECTED] Subject: RE: SSL Doesn't

RE: SSL Doesn't Stay SSL

2004-03-10 Thread AMELIN Franck
And something like this ? RewriteCond %{REQUEST_URI} ^/servlet/app(.*) RewriteRule ^/(.*)$ https://app.domain.com/$1 [R,L] -Message d'origine- De :John Thompson [mailto:[EMAIL PROTECTED] Envoyé :mercredi 10 mars 2004 17:02 À : 'Tomcat Users List' Objet : RE: SSL Doesn't

RE: SSL Doesn't Stay SSL

2004-03-10 Thread John Thompson
META tag to redirects to the url /app/index.jsp Thanks for your patience and attention. -Original Message- From: AMELIN Franck [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 10, 2004 10:22 AM To: 'Tomcat Users List'; [EMAIL PROTECTED] Subject: RE: SSL Doesn't Stay SSL And something