Hello list,

I looked at several threads so far but couldn't find the error I make.

I am using apache 2.0.54 with mod_ssl.
When connecting to http://mydomain.com everything works fine. On 
https://mydomain.com I am asked to accept the server certificate. After 
accepting it the following error message appears: "The connection to 
mydomain.com has terminated unexpectedly. Some data may have been transfered."

No error message is created in /logs/error_log.

in httpd.conf the mod_ssl module is activated and there is an include to 
ssl.conf and hosts.conf.

parts of ssl.conf:
Listen 1.2.3.4:443
NameVirtualHost *:443

<VirtualHost _default_:443>
DocumentRoot "/path/to/htdocs"
ServerName mydomain.com:443
ServerAdmin [EMAIL PROTECTED]
ErrorLog /path/to/logs/error_log
TransferLog /path/to/logs/access_log
SSLEngine on
SSLCipherSuite ALL:!ADH:!EXPORT56:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv2:+EXP:+eNULL
SSLCertificateFile /path/to/conf/ssl.crt/mydomain.crt
SSLCertificateKeyFile /path/to/conf/ssl.key/mydomain.key
</VirtualHost>

parts of hosts.conf:
NameVirtualHost *:80

<VirtualHost _default_:80>
    ServerName mydomain.com
    DocumentRoot "/path/to/htdocs"
    ErrorLog "/path/to/logs/error_log"
    TransferLog "/path/to/logs/access_log"
</VirtualHost>

If additional information is needed please let me know.

Thank your for your consideration.



---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
   "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to