blob: a26d2509d542fb0586937456a145eeea13934e0f (
plain)
1
2
3
4
5
6
7
8
9
10
|
SSLEngine on
<%- if wildcard_sslcert == 'true' then -%>
SSLCertificateFile /etc/ssl/wildcard.<%= domain %>.crt
SSLCertificateKeyFile /etc/ssl/wildcard.<%= domain %>.key
SSLCACertificateFile /etc/ssl/wildcard.<%= domain %>.pem
SSLVerifyClient None
<%- else -%>
SSLCertificateFile /etc/ssl/apache/<%= real_vhost %>.pem
SSLCertificateKeyFile /etc/ssl/apache/<%= real_vhost %>.pem
<%- end -%>
|