diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2016-06-18 13:21:48 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2016-06-18 13:21:48 -0300 |
commit | 499b3fb152ac52272aa4ba18b52b14fb73449eec (patch) | |
tree | 642e155443c5e5fad68078285c1ada17865d6882 /manifests/site | |
parent | ddf797eba5dac72742348247e539242a906ac672 (diff) | |
download | puppet-apache-499b3fb152ac52272aa4ba18b52b14fb73449eec.tar.gz puppet-apache-499b3fb152ac52272aa4ba18b52b14fb73449eec.tar.bz2 |
Adds more params into apache::site::config
Diffstat (limited to 'manifests/site')
-rw-r--r-- | manifests/site/config.pp | 26 |
1 files changed, 22 insertions, 4 deletions
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: { |