X-Git-Url: https://git.donarmstrong.com/?p=dsa-puppet.git;a=blobdiff_plain;f=3rdparty%2Fmodules%2Fapache%2Ftemplates%2Fvhost%2F_ssl.erb;fp=3rdparty%2Fmodules%2Fapache%2Ftemplates%2Fvhost%2F_ssl.erb;h=0000000000000000000000000000000000000000;hp=516992558fed104ba751a4dadb601d6d8422175d;hb=3d4dc4fd9e59bd0e07646c99f6b356c7d9d859aa;hpb=29c25a2dd54b818d590063af535221f98af7d6c8 diff --git a/3rdparty/modules/apache/templates/vhost/_ssl.erb b/3rdparty/modules/apache/templates/vhost/_ssl.erb deleted file mode 100644 index 51699255..00000000 --- a/3rdparty/modules/apache/templates/vhost/_ssl.erb +++ /dev/null @@ -1,46 +0,0 @@ -<% if @ssl -%> - - ## SSL directives - SSLEngine on - SSLCertificateFile "<%= @ssl_cert %>" - SSLCertificateKeyFile "<%= @ssl_key %>" - <%- if @ssl_chain -%> - SSLCertificateChainFile "<%= @ssl_chain %>" - <%- end -%> - <%- if @ssl_certs_dir && @ssl_certs_dir != '' -%> - SSLCACertificatePath "<%= @ssl_certs_dir %>" - <%- end -%> - <%- if @ssl_ca -%> - SSLCACertificateFile "<%= @ssl_ca %>" - <%- end -%> - <%- if @ssl_crl_path -%> - SSLCARevocationPath "<%= @ssl_crl_path %>" - <%- end -%> - <%- if @ssl_crl -%> - SSLCARevocationFile "<%= @ssl_crl %>" - <%- end -%> - <%- if @ssl_crl_check && scope.function_versioncmp([@apache_version, '2.4']) >= 0 -%> - SSLCARevocationCheck "<%= @ssl_crl_check %>" - <%- end -%> - <%- if @ssl_proxyengine -%> - SSLProxyEngine On - <%- end -%> - <%- if @ssl_protocol -%> - SSLProtocol <%= @ssl_protocol %> - <%- end -%> - <%- if @ssl_cipher -%> - SSLCipherSuite <%= @ssl_cipher %> - <%- end -%> - <%- if @ssl_honorcipherorder -%> - SSLHonorCipherOrder <%= @ssl_honorcipherorder %> - <%- end -%> - <%- if @ssl_verify_client -%> - SSLVerifyClient <%= @ssl_verify_client %> - <%- end -%> - <%- if @ssl_verify_depth -%> - SSLVerifyDepth <%= @ssl_verify_depth %> - <%- end -%> - <%- if @ssl_options -%> - SSLOptions <%= Array(@ssl_options).join(' ') %> - <%- end -%> -<% end -%>