apache: Make SSLProxyVerifyDepth configurable
This commit is contained in:
parent
d4a487cfe3
commit
0a4798d619
2 changed files with 2 additions and 0 deletions
|
@ -501,6 +501,7 @@ class apache::sslproxy(
|
|||
$ssl_key="${::puppet_ssldir}/private_keys/${::homename}.pem",
|
||||
$ssl_cert="${::puppet_ssldir}/certs/${::homename}.pem",
|
||||
$ssl_ca="${::puppet_ssldir}/certs/ca.pem",
|
||||
$ssl_verifydepth="1",
|
||||
) {
|
||||
|
||||
include ssl
|
||||
|
|
|
@ -2,3 +2,4 @@ SSLProxyEngine on
|
|||
SSLProxyMachineCertificateFile <%= @ssl_bundle %>
|
||||
SSLProxyCACertificateFile <%= @ssl_ca %>
|
||||
SSLProxyVerify require
|
||||
SSLProxyVerifyDepth <%= @ssl_verifydepth %>
|
||||
|
|
Loading…
Add table
Reference in a new issue