aboutsummaryrefslogtreecommitdiffstats
path: root/deployment/websites/manifests/start.pp
blob: 34a57af81918e14d1a134f229dc5799ae2db219c (plain)
1
2
3
4
5
6
7
8
9
10
11
class websites::start {
    include websites::base
    apache::vhost_redirect { "start.${::domain}":
        url => "https://www.${::domain}/community/",
    }
    apache::vhost_redirect { "ssl_start.${::domain}":
        use_ssl => true,
        vhost => "start.${::domain}/",
        url => "https://www.${::domain}/community/",
    }
}