Correct certificates class name in vhost template

The correct name for the certs class in this module is
"certificates".

Change-Id: I61d3044e91db3f0be54c890d0592cd6b0417d412
This commit is contained in:
Jeremy Stanley 2016-11-16 22:22:41 +00:00
parent a72ab07bef
commit b63aa4a17b
1 changed files with 4 additions and 4 deletions

View File

@ -26,10 +26,10 @@
# only is guaranteed.
SSLCipherSuite ECDH+AESGCM:DH+AESGCM:ECDH+AES256:DH+AES256:ECDH+AES128:DH+AES:RSA+AESGCM:RSA+AES:!AES256:!aNULL:!eNULL:!MD5:!DSS:!PSK:!SRP
SSLHonorCipherOrder on
SSLCertificateFile <%= scope['phabricator::certs::cert_file'] %>
SSLCertificateKeyFile <%= scope['phabricator::certs::key_file'] %>
<% unless [nil, :undef].include?(scope['phabricator::certs::chain_file']) %>
SSLCertificateChainFile <%= scope['phabricator::certs::chain_file'] %>
SSLCertificateFile <%= scope['phabricator::certificates::cert_file'] %>
SSLCertificateKeyFile <%= scope['phabricator::certificates::key_file'] %>
<% unless [nil, :undef].include?(scope['phabricator::certificates::chain_file']) %>
SSLCertificateChainFile <%= scope['phabricator::certificates::chain_file'] %>
<% end %>
DocumentRoot <%= @docroot %>