aboutsummaryrefslogtreecommitdiffstats
path: root/modules/bcd/manifests/web.pp
blob: 97c697e571d64266c0d6456e9e9707f7ce1d483c (plain)
1
2
3
4
5
6
7
8
9
class bcd::web {
    include bcd::base
    $location = "${bcd::home}/public_html"

    apache::vhost::base { "bcd.$::domain":
        location => $location,
        content  => template('bcd/vhost_bcd.conf'),
    }
}