This file is indexed.

/usr/share/puppet/modules.available/puppetlabs-apache/templates/vhost/_sslproxy.erb is in puppet-module-puppetlabs-apache 3.0.0-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<% if @ssl_proxyengine -%>

  # SSL Proxy directives
  SSLProxyEngine On
  <%- if @ssl_proxy_verify -%>
  SSLProxyVerify <%= @ssl_proxy_verify %>
  <%- end -%>
  <%- if @ssl_proxy_verify_depth -%>
  SSLProxyVerifyDepth <%= @ssl_proxy_verify_depth %>
  <%- end -%>
  <%- if @ssl_proxy_ca_cert -%>
  SSLProxyCACertificateFile "<%= @ssl_proxy_ca_cert %>"
  <%- end -%>
  <%- if @ssl_proxy_check_peer_cn -%>
  SSLProxyCheckPeerCN     <%= @ssl_proxy_check_peer_cn %>
  <%- end -%>
  <%- if @ssl_proxy_check_peer_name -%>
  SSLProxyCheckPeerName   <%= @ssl_proxy_check_peer_name %>
  <%- end -%>
  <%- if @ssl_proxy_check_peer_expire -%>
  SSLProxyCheckPeerExpire   <%= @ssl_proxy_check_peer_expire %>
  <%- end -%>
  <%- if @ssl_proxy_machine_cert -%>
  SSLProxyMachineCertificateFile "<%= @ssl_proxy_machine_cert %>"
  <%- end -%>
  <%- if @ssl_proxy_cipher_suite -%>
  SSLProxyCipherSuite <%= @ssl_proxy_cipher_suite %>
  <%- end -%>
  <%- if @ssl_proxy_protocol -%>
  SSLProxyProtocol  <%= [@ssl_proxy_protocol].flatten.compact.join(' ') %>
  <%- end -%>
<% end -%>