also bei mir sieht der https-bereich folgendermassen aus (Apache1.3 unter Win2k):
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Listen 443
...
<VirtualHost _default_:443>
DocumentRoot "/wampp1/htdocs"
ServerName localhost
ServerAdmin [EMAIL=you@your.address]you@your.address[/EMAIL]
DocumentRoot "/wampp1/htdocs"
ErrorLog "/wampp1/logs/error_log"
TransferLog "/wampp1/logs/access_log"
SSLEngine on
SSLCertificateFile "/wampp1/apache/conf/ssl.crt/server.crt"
SSLCertificateKeyFile "/wampp1/apache/conf/ssl.key/server.key"
<Files ~ "\.(cgi|shtml|phtml|php3?)$">
SSLOptions +StdEnvVars
</Files>
<Directory "/wampp1/cgi-bin">
SSLOptions +StdEnvVars
</Directory>
SetEnvIf User-Agent ".*MSIE.*" \
nokeepalive ssl-unclean-shutdown \
downgrade-1.0 force-response-1.0
</VirtualHost>