/[adm]/puppet/deployment/websites/manifests/init.pp
ViewVC logotype

Annotation of /puppet/deployment/websites/manifests/init.pp

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1607 - (hide annotations) (download)
Sun May 15 11:20:16 2011 UTC (12 years, 10 months ago) by boklm
File size: 2272 byte(s)
add https on releases.mageia.org
1 misc 656 class websites {
2 boklm 1010 class base {
3     # FIXME :
4     # We should be able to define this path on each host.
5     # Maybe using Facter ?
6     $webdatadir = '/srv/web1-dd0/www'
7    
8     file { "$webdatadir":
9     ensure => directory,
10     mode => 755,
11     }
12     }
13    
14 misc 656 # should expire on June 2011
15     class donate {
16     apache::vhost_other_app { "donate.$domain":
17     vhost_file => "websites/vhost_donate.conf",
18     }
19     }
20 misc 955
21 boklm 1010 # vhost to host static files used by web sites
22     class static inherits base {
23     $vhostdir = "$webdatadir/static.$domain"
24     $svn_location = "svn://svn.$domain/svn/web/www/trunk/g/"
25     apache::vhost_other_app { "static.$domain":
26     vhost_file => 'websites/vhost_static.conf',
27     }
28    
29 boklm 1015 file { $vhostdir:
30     ensure => directory,
31     mode => 655,
32     }
33    
34     subversion::snapshot { "$vhostdir/g":
35 boklm 1010 source => $svn_location
36     }
37     }
38    
39 boklm 1583 class hugs inherits base {
40     $vhostdir = "$webdatadir/hugs.$domain"
41     $svn_location = "svn://svn.$domain/svn/web/hugs/public/"
42     apache::vhost_base { "hugs.$domain":
43     location => $vhostdir,
44     }
45    
46     subversion::snapshot { "$vhostdir":
47     source => $svn_location
48     }
49     }
50    
51 boklm 1592 class releases inherits base {
52     $vhostdir = "$webdatadir/releases.$domain"
53     $svn_location = "svn://svn.$domain/svn/web/releases/"
54     apache::vhost_base { "releases.$domain":
55     location => $vhostdir,
56 pterjan 1599 options => [ "FollowSymLinks" ]
57 boklm 1592 }
58 boklm 1607 apache::vhost_base { "ssl_releases.$domain":
59     vhost => "releases.$domain",
60     use_ssl => true,
61     location => $vhostdir,
62     options => [ "FollowSymLinks" ]
63     }
64 boklm 1592
65     subversion::snapshot { "$vhostdir":
66     source => $svn_location
67     }
68     }
69    
70 misc 955 class svn {
71     apache::vhost_redirect { "svn.$domain":
72     url => "http://svnweb.$domain/",
73     }
74     }
75 misc 1104
76     class forum_proxy {
77    
78     $web_domain = "forums.$domain"
79     host { "$web_domain":
80     ip => '192.168.122.131',
81     ensure => 'present',
82     }
83    
84     apache::vhost_reverse_proxy { "$web_domain":
85     url => "http://$web_domain/",
86     }
87    
88     apache::vhost_reverse_proxy { "ssl_$web_domain":
89     vhost => $web_domain,
90     use_ssl => true,
91     url => "http://$web_domain/",
92     }
93     }
94 misc 656 }

  ViewVC Help
Powered by ViewVC 1.1.30