Update vhost.pp
This commit is contained in:
parent
41ebc1a659
commit
408b0c8b12
1 changed files with 12 additions and 0 deletions
|
@ -93,6 +93,10 @@
|
||||||
# put after everything else inside vhost
|
# put after everything else inside vhost
|
||||||
# [*vhost_cfg_prepend*] - It expects a hash with custom directives to
|
# [*vhost_cfg_prepend*] - It expects a hash with custom directives to
|
||||||
# put before everything else inside vhost
|
# put before everything else inside vhost
|
||||||
|
# [*vhost_cfg_ssl_append*] - It expects a hash with custom directives to
|
||||||
|
# put after everything else inside vhost ssl
|
||||||
|
# [*vhost_cfg_ssl_prepend*] - It expects a hash with custom directives to
|
||||||
|
# put before everything else inside vhost ssl
|
||||||
# [*rewrite_to_https*] - Adds a server directive and rewrite rule to
|
# [*rewrite_to_https*] - Adds a server directive and rewrite rule to
|
||||||
# rewrite to ssl
|
# rewrite to ssl
|
||||||
# [*include_files*] - Adds include files to vhost
|
# [*include_files*] - Adds include files to vhost
|
||||||
|
@ -169,6 +173,8 @@ define nginx::resource::vhost (
|
||||||
$client_max_body_size = undef,
|
$client_max_body_size = undef,
|
||||||
$vhost_cfg_prepend = undef,
|
$vhost_cfg_prepend = undef,
|
||||||
$vhost_cfg_append = undef,
|
$vhost_cfg_append = undef,
|
||||||
|
$vhost_cfg_ssl_prepend = undef,
|
||||||
|
$vhost_cfg_ssl_append = undef,
|
||||||
$include_files = undef,
|
$include_files = undef,
|
||||||
$access_log = undef,
|
$access_log = undef,
|
||||||
$error_log = undef,
|
$error_log = undef,
|
||||||
|
@ -288,6 +294,12 @@ define nginx::resource::vhost (
|
||||||
if ($vhost_cfg_append != undef) {
|
if ($vhost_cfg_append != undef) {
|
||||||
validate_hash($vhost_cfg_append)
|
validate_hash($vhost_cfg_append)
|
||||||
}
|
}
|
||||||
|
if ($vhost_cfg_ssl_prepend != undef) {
|
||||||
|
validate_hash($vhost_cfg_ssl_prepend)
|
||||||
|
}
|
||||||
|
if ($vhost_cfg_ssl_append != undef) {
|
||||||
|
validate_hash($vhost_cfg_ssl_append)
|
||||||
|
}
|
||||||
if ($include_files != undef) {
|
if ($include_files != undef) {
|
||||||
validate_array($include_files)
|
validate_array($include_files)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue