/[adm]/puppet/modules/apache/manifests/init.pp
ViewVC logotype

Contents of /puppet/modules/apache/manifests/init.pp

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1630 - (show annotations) (download)
Tue May 24 09:07:42 2011 UTC (12 years, 10 months ago) by boklm
File size: 8153 byte(s)
add separate logs on vhost_base
1 class apache {
2
3 class base {
4 $php_date_timezone = "UTC"
5 $httpd_logdir = "/var/log/httpd"
6
7 package { "apache-mpm-prefork":
8 alias => apache,
9 ensure => installed
10 }
11
12 package { "apache-conf":
13 ensure => installed,
14 }
15
16 service { httpd:
17 alias => apache,
18 ensure => running,
19 subscribe => [ Package['apache-mpm-prefork'] ],
20 }
21
22 file { "customization.conf":
23 ensure => present,
24 path => "/etc/httpd/conf.d/customization.conf",
25 content => template("apache/customization.conf"),
26 require => Package["apache-conf"],
27 notify => Service["apache"],
28 owner => root,
29 group => root,
30 mode => 644,
31 }
32
33 file { "00_default_vhosts.conf":
34 path => "/etc/httpd/conf/vhosts.d/00_default_vhosts.conf",
35 ensure => "present",
36 owner => root,
37 group => root,
38 mode => 644,
39 notify => Service['apache'],
40 require => Package["apache-conf"],
41 content => template("apache/00_default_vhosts.conf")
42 }
43
44 }
45
46 class mod_php inherits base {
47 package { "apache-mod_php":
48 ensure => installed
49 }
50
51 file { "/etc/httpd/conf.d/mod_php.conf":
52 ensure => present,
53 owner => root,
54 group => root,
55 mode => 644,
56 require => Package['apache-conf'],
57 content => template('apache/mod_php.conf'),
58 notify => Service['apache'],
59 }
60 }
61
62 class mod_perl inherits base {
63 package { "apache-mod_perl":
64 ensure => installed
65 }
66 }
67
68 class mod_fcgid inherits base {
69 package { "apache-mod_fcgid":
70 ensure => installed
71 }
72 }
73
74 class mod_fastcgi inherits base {
75 package { "apache-mod_fastcgi":
76 ensure => installed
77 }
78 }
79
80 class mod_ssl inherits base {
81 file { "/etc/ssl/apache/":
82 ensure => directory
83 }
84
85 package { "apache-mod_ssl":
86 ensure => installed
87 }
88
89 file { "01_default_ssl_vhost.conf":
90 path => '/etc/httpd/conf/vhosts.d/01_default_ssl_vhost.conf',
91 ensure => "present",
92 owner => root,
93 group => root,
94 mode => 644,
95 notify => Service['apache'],
96 require => Package["apache-conf"],
97 content => template("apache/01_default_ssl_vhost.conf")
98 }
99 }
100
101 class mod_wsgi inherits base {
102 package { "apache-mod_wsgi":
103 ensure => installed
104 }
105
106 file { "/usr/local/lib/wsgi":
107 ensure => directory,
108 owner => root,
109 group => root,
110 mode => 644,
111 }
112
113 file { "/etc/httpd/conf.d/mod_wsgi.conf":
114 ensure => present,
115 owner => root,
116 group => root,
117 mode => 644,
118 require => Package['apache-conf'],
119 content => template('apache/mod_wsgi.conf'),
120 notify => Service['apache'],
121 }
122
123 }
124
125 class mod_proxy inherits base {
126 package { "apache-mod_proxy":
127 ensure => installed
128 }
129 }
130
131 class mod_public_html inherits base {
132 package { "apache-mod_public_html":
133 ensure => installed
134 }
135 }
136
137 class mod_deflate inherits base {
138 package { "apache-mod_deflate":
139 ensure => installed
140 }
141 }
142
143 define vhost_base($content = '',
144 $location = '/dev/null',
145 $use_ssl = false,
146 $vhost = false,
147 $aliases = {},
148 $server_aliases = [],
149 $access_logfile = false,
150 $error_logfile = false,
151 $options = [],
152 $enable_public_html = false) {
153 include apache::base
154 if ! $vhost {
155 $real_vhost = $name
156 } else {
157 $real_vhost = $vhost
158 }
159
160 if ! $access_logfile {
161 $access_logfile = $httpd_logdir/access_log-$real_vhost
162 }
163 if ! $error_logfile {
164 $error_logfile = $httpd_logdir/error_log-$real_vhost
165 }
166
167 if $use_ssl {
168 include apache::mod_ssl
169 if $wildcard_sslcert != 'true' {
170 openssl::self_signed_cert{ "$real_vhost":
171 directory => "/etc/ssl/apache/",
172 before => File["$filename"],
173 }
174 }
175 }
176
177 if $enable_public_html {
178 include apache::mod_public_html
179 }
180
181 $filename = "$name.conf"
182 file { "$filename":
183 path => "/etc/httpd/conf/vhosts.d/$filename",
184 ensure => "present",
185 owner => root,
186 group => root,
187 mode => 644,
188 notify => Service['apache'],
189 require => Package['apache-conf'],
190 content => template("apache/vhost_base.conf")
191 }
192 }
193
194 define vhost_redirect_ssl() {
195 vhost_base { "redirect_ssl_$name":
196 vhost => $name,
197 content => template("apache/vhost_ssl_redirect.conf")
198 }
199 }
200
201 define vhost_catalyst_app($script, $location = '', $process = 4, $use_ssl = false, $vhost = false) {
202
203 include apache::mod_fastcgi
204 vhost_base { $name:
205 vhost => $vhost,
206 use_ssl => $use_ssl,
207 content => template("apache/vhost_catalyst_app.conf")
208 }
209 }
210
211 define vhost_django_app($module = false, $module_path = false, $use_ssl = false, $aliases= {}) {
212 include apache::mod_wsgi
213 vhost_base { $name:
214 use_ssl => $use_ssl,
215 content => template("apache/vhost_django_app.conf"),
216 aliases => $aliases,
217 }
218
219 # module is a ruby reserved keyword, cannot be used in templates
220 $django_module = $module
221 file { "$name.wsgi":
222 path => "/usr/local/lib/wsgi/$name.wsgi",
223 ensure => "present",
224 owner => root,
225 group => root,
226 mode => 755,
227 notify => Service['apache'],
228 content => template("apache/django.wsgi")
229 }
230 }
231
232 define vhost_wsgi($wsgi_path, $aliases = {}, $server_aliases = []) {
233 include apache::mod_wsgi
234 vhost_base { $name:
235 aliases => $aliases,
236 server_aliases => $server_aliases,
237 content => template("apache/vhost_wsgi.conf")
238 }
239 }
240
241 define vhost_other_app($vhost_file) {
242 include apache::base
243 file { "$name.conf":
244 path => "/etc/httpd/conf/vhosts.d/$name.conf",
245 ensure => "present",
246 owner => root,
247 group => root,
248 mode => 644,
249 notify => Service['apache'],
250 require => Package['apache-conf'],
251 content => template($vhost_file)
252 }
253 }
254
255 define vhost_simple($location) {
256 include apache::base
257 vhost_base { $name:
258 location => $location,
259 }
260 }
261
262 define vhost_redirect($url,
263 $vhost = false,
264 $use_ssl = false) {
265 include apache::base
266 vhost_base { $name:
267 use_ssl => $use_ssl,
268 vhost => $vhost,
269 content => template("apache/vhost_redirect.conf"),
270 }
271 }
272
273 define vhost_reverse_proxy($url,
274 $vhost = false,
275 $use_ssl = false) {
276 include apache::mod_proxy
277 vhost_base { $name:
278 use_ssl => $use_ssl,
279 vhost => $vhost,
280 content => template("apache/vhost_reverse_proxy.conf")
281 }
282 }
283
284 define webapp_other($webapp_file) {
285 include apache::base
286 $webappname = $name
287 file { "webapp_$name.conf":
288 path => "/etc/httpd/conf/webapps.d/$webappname.conf",
289 ensure => "present",
290 owner => root,
291 group => root,
292 mode => 644,
293 notify => Service['apache'],
294 require => Package['apache-conf'],
295 content => template($webapp_file)
296 }
297 }
298 }

  ViewVC Help
Powered by ViewVC 1.1.30