aboutsummaryrefslogtreecommitdiffstats
path: root/deployment/websites/manifests/git.pp
blob: e357dfb25cf9b50ca7e215abf69d30dada67b3dc (plain)
1
2
3
4
5
6
7
8
9
10
class websites::git {
    apache::vhost_redirect { "git.${::domain}":
        url => "https://gitweb.${::domain}/",
    }
    apache::vhost_redirect { "ssl_git.${::domain}":
        use_ssl => true,
        vhost => "git.${::domain}",
        url => "https://gitweb.${::domain}/",
    }
}