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