aboutsummaryrefslogtreecommitdiffstats
path: root/deployment/websites/manifests/archives.pp
blob: ea66f3b8d1e7e965cd95040cd4a60c55f322f719 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
class websites::archives {
    include websites::base
    $vhost = "archives.${::domain}"
    $vhostdir = "$websites::base::webdatadir/${vhost}"
    $git_location = "git://git.${::domain}/web/archives"

    apache::vhost::base { $vhost:
        location => $vhostdir,
    }

    apache::vhost::base { "ssl_${vhost}":
        vhost    => $vhost,
        use_ssl  => true,
        location => $vhostdir,
    }

    git::snapshot { $vhostdir:
        source => $git_location,
    }
}