[Zope] Zope+ssl and httpd.conf

trashMan trashman@httconsulting.com
Sat, 12 Apr 2003 17:19:39 +0200


I've installed mod_ssl on apache. The server is a Win2000! :-))

SSL work fine but i'm not able to configure httpd.conf correctly, in
fact when i call

Https://myserver/index_html sometimes i have an error and the other
times i have a incorrect page (it don't load stylesheet and image).

The httpd.conf now is

<VirtualHost 217.58.xxx.yyy>
CustomLog logs/myserver-access_log combined
ErrorLog logs/myserver-error_log
ServerName 217.58.xxx.yyy
ServerAdmin admin
RewriteEngine on
RewriteRule ^/(.*)
http://localhost:8080/VirtualHostBase/http/217.58.xxx.yyy:80/myserver/Vi
rtualHostRoot/$1 [P]
</VirtualHost>

<VirtualHost 217.58.xxx.yyy:443>

SSLEngine On
SSLCertificateFile conf/ssl/myserver.cert
SSLCertificateKeyFile conf/ssl/myserver.key

CustomLog logs/myserver-access_log combined
ErrorLog logs/myserver-error_log
ServerName 217.58.xxx.yyy
ServerAdmin admin
RewriteEngine on
RewriteRule ^/(.*)
http://localhost:8080/VirtualHostBase/http/217.58.xxx.yyy:443/myserver/V
irtualHostRoot/$1 [P]
</VirtualHost> 

Can you help me??

Thanks!!

Massimiliano