aboutsummaryrefslogtreecommitdiffstats
path: root/deployment/websites/manifests/start.pp
blob: 4674591c6acfeb2bdd3565ff4c4a5c81a621136f (plain)
1
2
3
4
5
6
7
8
9
10
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,
        url => "https://www.${::domain}/community/",
    }
}