SSLEngine on SSLCertificateFile \ /usr/local/apache/conf/ssl.crt/server.crt SSLCertificateKeyFile \ /usr/local/apache/conf/ssl.key/server.key
<Directory "/mnt/hdd/webssl"> Options Indexes MultViews AllowOverride None Order allow,deny Allow from all </Directory> </VirtualHost> </IfDefine>
The default configuration file provides a good starting point. Specific points of interest are the ServerType, ServerRoot, ServerAdmin, ServerName, DocumentRoot, LoadModule, SSLEngine, SSLCertificateFile and SSLCertificateKeyFile directives.
Be sure that the SSLCertificateFile points to the location of the server's certificate and the SSLCertificateKeyFile points to the location of the server's encryption key.
There may be other directives that you wish to change.