1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
|
class apache {
class base {
package { "apache-mpm-prefork":
alias => apache,
ensure => installed
}
service { httpd:
alias => apache,
ensure => running,
subscribe => [ Package['apache-mpm-prefork'] ],
}
file { "customization.conf":
ensure => present,
path => "/etc/httpd/conf.d/customization.conf",
content => template("apache/customization.conf"),
require => Package["apache"],
notify => Service["apache"],
owner => root,
group => root,
mode => 644,
}
file { "00_default_vhosts.conf":
path => "/etc/httpd/conf/vhosts.d/00_default_vhosts.conf",
ensure => "present",
owner => root,
group => root,
mode => 644,
notify => Service['apache'],
content => template("apache/00_default_vhosts.conf")
}
}
class mod_php inherits base {
package { "apache-mod_php":
ensure => installed
}
}
class mod_perl inherits base {
package { "apache-mod_perl":
ensure => installed
}
}
class mod_fcgid inherits base {
package { "apache-mod_fcgid":
ensure => installed
}
}
class mod_fastcgi inherits base {
package { "apache-mod_fastcgi":
ensure => installed
}
}
class mod_ssl inherits base {
file { "/etc/ssl/apache/":
ensure => directory
}
package { "apache-mod_ssl":
ensure => installed
}
}
class mod_wsgi inherits base {
package { "apache-mod_wsgi":
ensure => installed
}
file { "/usr/local/lib/wsgi":
ensure => directory,
owner => root,
group => root,
mode => 644,
}
}
define vhost_redirect_ssl() {
file { "redirect_ssl_$name.conf":
path => "/etc/httpd/conf/vhosts.d/redirect_ssl_$name.conf",
ensure => "present",
owner => root,
group => root,
mode => 644,
notify => Service['apache'],
content => template("apache/vhost_ssl_redirect.conf")
}
}
define vhost_catalyst_app($script, $location = '', $process = 4, $use_ssl = false) {
include apache::mod_fastcgi
if $use_ssl {
include apache::mod_ssl
openssl::self_signed_cert{ "$name":
directory => "/etc/ssl/apache/",
before => File["$name.conf"],
}
}
file { "$name.conf":
path => "/etc/httpd/conf/vhosts.d/$name.conf",
ensure => "present",
owner => root,
group => root,
mode => 644,
notify => Service['apache'],
content => template("apache/vhost_catalyst_app.conf")
}
}
define vhost_django_app($module = false, $module_path = false, $use_ssl = false) {
include apache::mod_wsgi
if $use_ssl {
include apache::mod_ssl
openssl::self_signed_cert{ "$name":
directory => "/etc/ssl/apache/",
before => File["$name.conf"],
}
}
# module is a ruby reserved keyword, cannot be used in templates
$django_module = $module
file { "$name.conf":
path => "/etc/httpd/conf/vhosts.d/$name.conf",
ensure => "present",
owner => root,
group => root,
mode => 644,
notify => Service['apache'],
content => template("apache/vhost_django_app.conf")
}
# fichier django wsgi
file { "$name.wsgi":
path => "/usr/local/lib/wsgi/$name.wsgi",
ensure => "present",
owner => root,
group => root,
mode => 755,
notify => Service['apache'],
content => template("apache/django.wsgi")
}
}
define vhost_other_app($vhost_file) {
include apache::base
file { "$name.conf":
path => "/etc/httpd/conf/vhosts.d/$name.conf",
ensure => "present",
owner => root,
group => root,
mode => 644,
notify => Service['apache'],
content => template($vhost_file)
}
}
define vhost_simple($location) {
include apache::base
file { "$name.conf":
path => "/etc/httpd/conf/vhosts.d/$name.conf",
ensure => "present",
owner => root,
group => root,
mode => 644,
notify => Service['apache'],
content => template("apache/vhost_simple.conf")
}
}
define webapp_other($webapp_file) {
include apache::base
$webappname = $name
file { "webapp_$name.conf":
path => "/etc/httpd/conf/webapps.d/$webappname.conf",
ensure => "present",
owner => root,
group => root,
mode => 644,
notify => Service['apache'],
content => template($webapp_file)
}
}
}
|