You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@httpd.apache.org by Arthur Chan <ac...@saysit.com.hk> on 2003/07/29 05:52:53 UTC

[users@httpd] HOWTO : configuring httpd.conf for OpenSSL ?

Hi.
I compiled mod_ssl into Apache2 and got openssl to create server.key into
.../conf/server.key and server.crt into .../conf/server.crt
Then I modified httpd.conf like this :
<IfModule mod_ssl.c>
   Include /path/to/html
</IfModule>
Also, I commented out the explicitly defined virtual hosts inside
<VirtualHost v.hostname.com>
</VirtualHost>
because I expect troubles there.

In ssl.conf, I modified the following lines so that they have the samew
parameter values as in httpd.conf
<VirtualHost _default_:443>
  DocumentRoot "/path/to/html"
  ServerName www.my.domain.com:80  # in httpd.conf, I used the BIOS name
e.g. ServerName BIOSNAME:80
  ...
  SSLEngine on
  ...
  SSLCertificate /path/to/conf/ssl.crt/server.crt
  SSLCertificate /path/tp/conf/ssl.key/server.key
  ...
When I start apache again with
# apachectl startssl
I got the following messages
[error] VirtualHost -default_:443 -- mixing * port and non-* ports with a
NameVirtualHost address is not supported: proceeding with unidentified
results.
Apache/2.0.40 mod_ssl/2.0.40 (Pass Phrase Dialog)
...
Can someone please point out where I might have gone wrong ?
I didn't use RedHat's default directories in /etc/httpd.conf .




---------------------------------------------------------------------
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: users-unsubscribe@httpd.apache.org
   "   from the digest: users-digest-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org