From 499b3fb152ac52272aa4ba18b52b14fb73449eec Mon Sep 17 00:00:00 2001 From: Silvio Rhatto Date: Sat, 18 Jun 2016 13:21:48 -0300 Subject: Adds more params into apache::site::config --- manifests/site/config.pp | 26 ++++++++++++++++++++++---- 1 file changed, 22 insertions(+), 4 deletions(-) (limited to 'manifests/site/config.pp') diff --git a/manifests/site/config.pp b/manifests/site/config.pp index e084b46..60caa86 100644 --- a/manifests/site/config.pp +++ b/manifests/site/config.pp @@ -1,8 +1,26 @@ define apache::site::config( - $ensure = 'present', - $source = false, - $vhost = $name, - $template = 'apache/site.erb', + $ensure = 'present', + $source = false, + $vhost = $name, + $docroot = false, + $redirect = false, + $redirect_match = false, + $protocol = 'http', + $aliases = false, + $server_alias = false, + $use = false, + $template = 'apache/site.erb', + $mpm = true, + $user = '' + $gid = '' + $ssl = false, + $listen = '*', + $https_redirect = false, + $canonical = false, + $canonical_exceptions = '', + $custom_directives = false, + $allow_override = false, + $hosting_domain = hiera('apache::site::domain', $::domain) ) { case $source { true: { -- cgit v1.2.3