aboutsummaryrefslogtreecommitdiff
path: root/manifests/role/proxy.pp
blob: c298f962411d8c2d0460bb5708e871b8fb62cbf1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
class nodo::role::proxy inherits nodo::base::vserver {
  include nginx

  # Graph nginx
  munin::plugin { [ 'nginx_request', 'nginx_status' ]:
    ensure => present,
    config => 'env.url http://localhost/nginx_status',
  }

  # Needed by munin plugins
  package { 'liblwp-useragent-determined-perl':
    ensure => installed,
  }
}