Parent Directory | Revision Log
fix vhost invocation on several module, was missed by last commit, and add the one for redirect_ssl
1 | class websites::releases { |
2 | include websites::base |
3 | $vhost = "releases.$::domain" |
4 | $vhostdir = "$websites::base::webdatadir/$vhost" |
5 | $svn_location = "svn://svn.$::domain/svn/web/releases/" |
6 | |
7 | apache::vhost::base { $vhost: |
8 | location => $vhostdir, |
9 | options => [ 'FollowSymLinks' ], |
10 | } |
11 | |
12 | apache::vhost::base { "ssl_$vhost": |
13 | vhost => $vhost, |
14 | use_ssl => true, |
15 | location => $vhostdir, |
16 | options => [ 'FollowSymLinks' ], |
17 | } |
18 | |
19 | subversion::snapshot { $vhostdir: |
20 | source => $svn_location, |
21 | } |
22 | } |
Name | Value |
---|---|
svn:keywords | "ID Date Rev" |
ViewVC Help | |
Powered by ViewVC 1.1.30 |