aboutsummaryrefslogtreecommitdiffstats
path: root/modules/apache/manifests/var.pp
blob: 4a6d68eb6f9168308cb52e653d518fa82e13067d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# $httpdlogs_rotate:
#   number of time the log file are rotated before being removed
# $default_vhost_redirect:
#   URL to redirect to in case of unknown vhost
class apache::var(
    $httpdlogs_rotate = '24',
    $apache_user = 'apache',
    $apache_group = 'apache',
    $default_vhost_redirect = ''
) {
    $pkg_conf = 'apache'
}