Skip to content

Commit

Permalink
Merge pull request #1049 from bastelfreak/fastcgi_cache_key
Browse files Browse the repository at this point in the history
change fastcgi_cache_key default false->undef
  • Loading branch information
hunner committed Mar 9, 2017
2 parents 55f9e3b + 215e779 commit 12cef18
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 @@ -68,7 +68,7 @@
$lingering_timeout = '5',
$events_use = undef,
$fastcgi_cache_inactive = '20m',
$fastcgi_cache_key = false,
$fastcgi_cache_key = undef,
$fastcgi_cache_keys_zone = 'd3:100m',
$fastcgi_cache_levels = '1',
$fastcgi_cache_max_size = '500m',
Expand Down Expand Up @@ -201,9 +201,6 @@
validate_string($fastcgi_cache_keys_zone)
validate_string($fastcgi_cache_max_size)
validate_string($fastcgi_cache_inactive)
if ($fastcgi_cache_key != false) {
validate_string($fastcgi_cache_key)
}

validate_bool($mail)
validate_bool($stream)
Expand Down

0 comments on commit 12cef18

Please sign in to comment.