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
|
# setup base apache class
class apache::base {
file{
'vhosts_dir':
ensure => directory,
path => '/etc/apache2/vhosts.d',
owner => root,
group => 0,
mode => '0644';
'config_dir':
ensure => directory,
path => '/etc/apache2/conf.d',
owner => root,
group => 0,
mode => '0644';
'include_dir':
ensure => directory,
path => '/etc/apache2/include.d',
owner => root,
group => 0,
mode => '0644';
'modules_dir':
ensure => directory,
path => '/etc/apache2/modules.d',
owner => root,
group => 0,
mode => '0644';
'htpasswd_dir':
ensure => directory,
path => '/var/www/htpasswds',
owner => root,
group => 'apache',
mode => '0640';
'web_dir':
ensure => directory,
path => '/var/www',
owner => root,
group => 0,
mode => '0644';
'default_apache_index':
path => '/var/www/localhost/htdocs/index.html',
content => template('apache/default/default_index.erb'),
owner => root,
group => 0,
mode => '0644';
}
anchor{'apache::basic_dirs::ready':
require => File['vhosts_dir','config_dir','include_dir','modules_dir','htpasswd_dir','web_dir','default_apache_index']
}
service{'apache':
ensure => running,
name => 'apache2',
enable => true,
}
apache::config::include{ 'defaults.inc': }
apache::config::global{ 'git.conf': }
apache::vhost::file { '0-default': }
}
|