How can i do that? I did everything that was instructed in
documentation. I created ssl.conf file:
SSLRandomSeed startup builtin
SSLRandomSeed connect builtin
<IfDefine SSL>
Listen 443
AddType application/x-x509-ca-cert .crt
AddType application/x-pkcs7-crl .crl
SSLSessionCache dbm:/u2/apache-2.2/logs/ssl_scache
SSLSessionCacheTimeout 300
SSLMutex file:/u2/apache-2.2/logs/ssl_mutex
NameVirtualHost *:443
<VirtualHost *:443>
DocumentRoot "/u2/vhost/htdocs-ssl"
ServerName demo.logos.hr:443
ServerAdmin
helpdesk@logos.hr
ErrorLog /u2/vhost/logs/vhost_error_ssl.log
TransferLog /u2/vhost/logs/transfer.log
SSLEngine on
SSLCipherSuite
ALL:!ADH:!EXPORT56:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSL v2:+EXP:+eNULL
SSLCertificateFile /u2/vhost/ssl/demo.logos.hr.crt
SSLCertificateKeyFile /u2/apache-2.2/conf/ssl.key/server.key
CustomLog /u2/vhost/logs/ssl_request_log \
"%t %h %{SSL_PROTOCOL}x %{SSL_CIPHER}x \"%r\" %b"
</VirtualHost>
</IfDefine>
and i included it in httpd.conf:
Include conf/ssl.conf
I have already configured non-ssl virtual host (port 80) and it works
properly.
When i start apache (./apachectl startssl) i get this error:
Syntax error on line 28 of /u2/apache-2.2/conf/ssl.conf:
Invalid command 'SSLRandomSeed', perhaps mis-spelled or defined by a
module not included in the server configuration
Alan