Sophie

Sophie

distrib > Mageia > 6 > x86_64 > media > core-release > by-pkgid > b6edeb0294a568a632c0ab3fb3ea4328 > files > 3

apache-mod_ssl-2.4.26-1.mga6.x86_64.rpm

# default SSL virtual host, used for all HTTPS requests that do not
# match a ServerName or ServerAlias in any <VirtualHost> block.

<VirtualHost _default_:443>
    # general configuration
    ServerAdmin root@localhost
    ServerName localhost

    # SSL configuration
    SSLEngine on
    SSLCertificateFile /etc/pki/tls/certs/httpd.pem
    SSLCertificateKeyFile /etc/pki/tls/private/httpd.pem
    CustomLog logs/ssl_request_log \
	"%t %h %{SSL_PROTOCOL}x %{SSL_CIPHER}x \"%r\" %b"

</VirtualHost>