summaryrefslogtreecommitdiff
path: root/manifests/puppetmaster.pp
blob: 6bbe046e270db25fdebd197e14690bf6b9974ee4 (plain)
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
class nginx::puppetmaster inherits nginx::base {

  $worker_processes = $puppetmaster_puppetmasters ? {
    ''      => 4,
    default => $puppetmaster_puppetmasters,
  }

  case $puppetmaster_certname {
    '': { $puppetmaster_certname = "puppet.$domain" }
  }

  $worker_connections   = 1024
  $ssl_port             = 8140
  $non_ssl_port         = 8141
  $puppetmaster_servers = [ "127.0.0.1:18140",
                            "127.0.0.1:18141",
                            "127.0.0.1:18142",
                            "127.0.0.1:18143" ]

  file { "/etc/nginx/conf.d/puppetmaster.conf":
    content => template("nginx/puppetmaster.conf.erb"),
    owner   => "root",
    group   => "root",
    mode    => 0644,
    ensure  => present,
    notify  => Service["nginx"],
  }

  nginx::base::site { "puppetmaster":
    ensure  => present,
    source  => 'template',
    require => File['/etc/nginx/conf.d/puppetmaster.conf'],
  }

  # We don't want nginx to listen at port 80
  nginx::base::site { "default":
    source => 'none',
    ensure => absent,
  }

  File["/etc/nginx/nginx.conf"] {
    content => template("nginx/nginx.conf.puppetmaster.erb"),
  }
}