summaryrefslogtreecommitdiff
path: root/manifests/cache.pp
blob: 95038e786fdf0c2aa652a06433a8215e46fdb53f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
class nginx::cache(
  $ensure = 'present',
) {
  file { '/var/cache/nginx':
    ensure  => directory,
    owner   => 'www-data',
    group   => 'www-data',
    mode    => '0700',
  }

  # See https://github.com/FRiCKLE/ngx_cache_purge
  #package { 'libnginx-mod-http-cache-purge':
  #  ensure => present,
  #}

  #nginx::config { 'cache':
  #  value => "proxy_cache_path /var/cache/nginx/ levels=1:2 keys_zone=STATIC:10m inactive=24h max_size=1g;\n",
  #}
}