aboutsummaryrefslogtreecommitdiffstats
path: root/deployment/websites/manifests/start.pp
blob: 9d5b77e5440582c84724460369e2adc8de42253e (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/",
    }
}