R: [Zope] Zope+ssl and httpd.conf

trashMan trashman@httconsulting.com
Mon, 14 Apr 2003 14:48:45 +0200


I've tried to add s to
VirtualHostBase/http/217.58.xxx.yyy:443/mysyte.it/ and the port to
VirtualHost without result.
If i call http://www.mysyte/ i've not problem.
If i call https://www.mysyte/ i've not answer

:-(

the httpd.conf now is:
 
<VirtualHost 217.58.xxx.yyy:80>
CustomLog logs/mysyte-access_log combined
ErrorLog logs/mysyte-error_log
ServerName 217.58.xxx.yyy
ServerAdmin admin
RewriteEngine on
RewriteRule ^/(.*)
http://localhost:8080/VirtualHostBase/http/217.58.xxx.yyy:80/mysyte.it/V
irtualHostRoot/$1 [P]
</VirtualHost>

<VirtualHost 217.58.xxx.yyy:443>
SSLEngine On
SSLCertificateFile conf/ssl/mysyte.cert
SSLCertificateKeyFile conf/ssl/mysyte.key
CustomLog logs/mysyte-s-access_log combined
ErrorLog logs/mysyte-s-error_log
ServerName 217.58.xxx.yyy
ServerAdmin admin
RewriteEngine on
RewriteRule ^/(.*)
http://localhost:8080/VirtualHostBase/http/217.58.xxx.yyy:443/mysyte.it/
VirtualHostRoot/$1 [P]
</VirtualHost>

Massimiliano
-----Messaggio originale-----
Da: Dylan Reinhardt [mailto:zope@dylanreinhardt.com] 
Inviato: sabato 12 aprile 2003 20.52
A: trashMan
Cc: zope@zope.org
Oggetto: Re: [Zope] Zope+ssl and httpd.conf


On Sat, 2003-04-12 at 08:19, trashMan wrote:

> <VirtualHost 217.58.xxx.yyy>

No port?  You only want this block matching *only* requests made to port
80, yes?  Try adding that and see if that does the trick.  

You may have other issues, but those will only become apparent when
you're sending the right stuff to the right places.

HTH,

Dylan