The https protocol don't work, but if I restart httpd it works
The https protocol don't work, but if I restart httpd it works
do you have a vaild SSL installed?
Have you check to see if in your httpd.conf that its listening on the right port?
Yes, the ssl installed is ok, Ok I check the httpd.conf
In my httpd.conf I have second Vhost, this:
[HTML]
# SSL
<IfDefine SSL>
# DO NOT EDIT. AUTOMATICALLY GENERATED
<VirtualHost xx.xx.xx.xxx:443>
ServerName xxxxxx.it
ServerAlias xxxxxx.com www.xxxxxx.com
ServerAlias www.xxxxxx.it
DocumentRoot /home/xxxxxx/public_html
ServerAdmin webmaster@xxxxxx.it
UseCanonicalName Off
<IfModule !mod_disable_suexec.c>
User xxxxxx
Group xxxxxx
</IfModule>
CustomLog /usr/local/apache/domlogs/xxxxxx.it combined
BytesLog /usr/local/apache/domlogs/xxxxxx.it-bytes_log
<IfModule concurrent_php.c>
php4_admin_value open_basedir "/home/xxxxxx:/usr/lib/php:/usr/php4/lib/php:/usr/local/lib/php:/usr/local/php4/lib/php:/tmp"
php5_admin_value open_basedir "/home/xxxxxx:/usr/lib/php:/usr/local/lib/php:/tmp"
</IfModule>
<IfModule !concurrent_php.c>
<IfModule mod_php4.c>
php_admin_value open_basedir "/home/xxxxxx:/usr/lib/php:/usr/php4/lib/php:/usr/local/lib/php:/usr/local/php4/lib/php:/$
</IfModule>
<IfModule mod_php5.c>
php_admin_value open_basedir "/home/xxxxxx:/usr/lib/php:/usr/local/lib/php:/tmp"
</IfModule>
</IfModule>
ScriptAlias /cgi-bin/ /home/xxxxxx/public_html/cgi-bin/
SSLEngine on
SSLCertificateFile /usr/share/ssl/certs/www.xxxxxx.it.crt
SSLCertificateKeyFile /usr/share/ssl/private/www.xxxxxx.it.key
SSLCACertificateFile /usr/share/ssl/certs/www.xxxxxx.it.cabundle
ErrorLog /usr/local/apache/domlogs/xxxxxx.it-ssl_data_log
CustomLog /usr/local/apache/domlogs/xxxxxx.it-ssl_log combined
SetEnvIf User-Agent ".*MSIE.*" nokeepalive ssl-unclean-shutdown
</VirtualHost>
</IfDefine>
[/HTML]
I get this errors in ssl_engine_log
[HTML]
22/Feb/2008 17:46:09 08091] [warn] Init: (domain.com:443) RSA server certificate CommonName (CN) `www.domain.com' does NOT match $
[22/Feb/2008 22:30:54 08091] [warn] Init: (domain.com:443) RSA server certificate CommonName (CN) `www.domain.com' does NOT match $
[23/Feb/2008 09:24:23 08091] [warn] Init: (domain.com:443) RSA server certificate CommonName (CN) `www.domain.com' does NOT match $
[23/Feb/2008 13:37:46 08091] [warn] Init: (domain.com:443) RSA server certificate CommonName (CN) `www.domain.com' does NOT match $
[23/Feb/2008 19:28:33 08091] [warn] Init: (domain.com:443) RSA server certificate CommonName (CN) `www.domain.com' does NOT match $
[24/Feb/2008 09:31:33 08091] [warn] Init: (domain.com:443) RSA server certificate CommonName (CN) `www.domain.com' does NOT match $
[24/Feb/2008 13:52:49 08091] [warn] Init: (domain.com:443) RSA server certificate CommonName (CN) `www.domain.com' does NOT match $
[24/Feb/2008 20:05:38 09402] [error] SSL handshake interrupted by system [Hint: Stop button pressed in browser?!] (System error fol$
[24/Feb/2008 20:05:38 09402] [error] System: Connection reset by peer (errno: 104)
[24/Feb/2008 20:36:35 08091] [warn] Init: (domain.com:443) RSA server certificate CommonName (CN) `www.domain.com' does NOT match $
[24/Feb/2008 20:39:50 32435] [warn] Init: (domain.com:443) RSA server certificate CommonName (CN) `www.domain.com' does NOT match $
[24/Feb/2008 20:45:04 32464] [error] SSL handshake timed out (client 84.223.170.96, server domain.com:443)
[25/Feb/2008 10:02:43 32435] [warn] Init: (domain.com:443) RSA server certificate CommonName (CN) `www.domain.com' does NOT match $
[25/Feb/2008 17:14:36 32435] [warn] Init: (domain.com:443) RSA server certificate CommonName (CN) `www.domain.com' does NOT match $
[25/Feb/2008 20:06:24 31625] [error] SSL handshake interrupted by system [Hint: Stop button pressed in browser?!] (System error fol$
[25/Feb/2008 20:06:24 31625] [error] System: Connection reset by peer (errno: 104)
[26/Feb/2008 00:45:12 32435] [warn] Init: (domain.com:443) RSA server certificate CommonName (CN) `www.domain.com' does NOT match $
[/HTML]
I'm having the same problem...were you able to resolve the issue?