summaryrefslogtreecommitdiff
path: root/manifests/cache.pp
blob: f7bb25ee89002addc84c128574c4b98a14ab6bed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
class nginx::cache {
  file { '/var/cache/nginx':
    ensure => directory,
  }

  file { '/etc/nginx/conf.d/cache.conf' :
    ensure  => present,
    owner   => 'root',
    group   => 'root',
    mode    => '0644',
    content => "proxy_cache_path /var/cache/nginx/ levels=1:2 keys_zone=STATIC:10m inactive=24h max_size=1g;\n",
    require => File['/var/cache/nginx'],
    notify  => Service['nginx'],
  }
}