Well. Have you:

1. Added a listen directive for the SSL port ?

2. A virtual host with the appropriate SSL directives ?

3. Tried to "telnet localhost 443" to make sure your server is actually 
listening the the https port?

4. Read the manual ?

Your SSL config should be something like the following:

Listen *:443

<VirtualHost *:443>

   ServerName *:443   

   SSLCertificateFile /var/certs/ssl.crt/myhost.crt
   SSLCertificateKeyFile /var/certs/ssl.key/myhost.key
   SSLEngine on

   DocumentRoot /var/www/htdocs

   ErrorLog /var/logs/www/reverse_error_log
   CustomLog /var/logs/www/reverse_access_log combined env=!dontlog

   ## Enter additional configuration here

</VirtualHost>                                  

 

-ascs
________________________________

De : RexWinthrop [mailto:[EMAIL PROTECTED] 
Envoyé : mercredi 9 janvier 2008 23:56
À : users@httpd.apache.org
Objet : [EMAIL PROTECTED] Update on --Unable to enable mod_ssl


Hi All, 
 
I have now successfully enabled mod_ssl and is listed under (apachectl -l)
Compiled in modules and Loaded modules in (apachectl -M )Loaded Modules
My question is I am able to access apache server using http://localhost and 
http://192.168.1.59 from other computers.
 
But I am unable to setup the Encrypted Apache Server though I have enabled :
 
Include conf/extra/httpd-ssl.conf

inside the httpd.conf file and gave the correct path for the certificates and 
keys in httpd-ssl.conf.
 
Please help...............
 

---------------------------------------------------------------------
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