Skip to content

Commit

Permalink
Merge pull request #1044 from bastelfreak/fastcgi_cache_path
Browse files Browse the repository at this point in the history
change fastcgi_cache_path default false->undef
  • Loading branch information
hunner committed Mar 8, 2017
2 parents 332867c + 1383476 commit 251d0e2
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions manifests/init.pp
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@
$fastcgi_cache_keys_zone = 'd3:100m',
$fastcgi_cache_levels = '1',
$fastcgi_cache_max_size = '500m',
$fastcgi_cache_path = false,
$fastcgi_cache_path = undef,
$fastcgi_cache_use_stale = undef,
$gzip = 'on',
$gzip_buffers = undef,
Expand Down Expand Up @@ -197,9 +197,6 @@
validate_string($proxy_cache_loader_sleep)
validate_string($proxy_cache_loader_threshold)

if ($fastcgi_cache_path != false) {
validate_string($fastcgi_cache_path)
}
validate_re($fastcgi_cache_levels, '^[12](:[12])*$')
validate_string($fastcgi_cache_keys_zone)
validate_string($fastcgi_cache_max_size)
Expand Down

0 comments on commit 251d0e2

Please sign in to comment.