Sha256: e513bf7634b4fb56f89925e27f3960f26c6254e7f2ee8bcea486a7db323725c4

Contents?: true

Size: 1.05 KB

Versions: 11

Compression:

Stored size: 1.05 KB

Contents

<% if @ssl -%>

  ## SSL directives
  SSLEngine on
  SSLCertificateFile      <%= @ssl_cert %>
  SSLCertificateKeyFile   <%= @ssl_key %>
<% if @ssl_chain -%>
  SSLCertificateChainFile <%= @ssl_chain %>
<% end -%>
  SSLCACertificatePath    <%= @ssl_certs_dir %>
<% 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_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 -%>

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
freighthop-0.6.1 modules/apache/templates/vhost/_ssl.erb
freighthop-0.6.0 modules/apache/templates/vhost/_ssl.erb
freighthop-0.5.2 modules/apache/templates/vhost/_ssl.erb
freighthop-0.5.1 modules/apache/templates/vhost/_ssl.erb
freighthop-0.5.0 modules/apache/templates/vhost/_ssl.erb
freighthop-0.4.1 modules/apache/templates/vhost/_ssl.erb
freighthop-0.4.0 modules/apache/templates/vhost/_ssl.erb
freighthop-0.3.3 modules/apache/templates/vhost/_ssl.erb
freighthop-0.3.2 modules/apache/templates/vhost/_ssl.erb
freighthop-0.3.1 modules/apache/templates/vhost/_ssl.erb
freighthop-0.3.0 modules/apache/templates/vhost/_ssl.erb