diff options
| author | Silvio Rhatto <rhatto@riseup.net> | 2018-04-12 12:44:11 -0300 | 
|---|---|---|
| committer | Silvio Rhatto <rhatto@riseup.net> | 2018-04-12 12:44:11 -0300 | 
| commit | 503e7ebdb208accb0f421368be67c7b320f02b9d (patch) | |
| tree | 64db170bcb10f0127842996d86769620276daf6d /manifests | |
| parent | a29d6c34b1d1a02225d3e4337df8f5ed48bf0516 (diff) | |
| download | puppet-php-503e7ebdb208accb0f421368be67c7b320f02b9d.tar.gz puppet-php-503e7ebdb208accb0f421368be67c7b320f02b9d.tar.bz2 | |
FPM support at php::series7::hardened (2)
Diffstat (limited to 'manifests')
| -rw-r--r-- | manifests/series7/hardened.pp | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/manifests/series7/hardened.pp b/manifests/series7/hardened.pp index d949470..296b8b1 100644 --- a/manifests/series7/hardened.pp +++ b/manifests/series7/hardened.pp @@ -11,9 +11,9 @@ class php::series7::hardened {    if $fpm == 'present' {      php::config { -      'allow_url_fopen'   : series => '7', sapi => 'fpm', value => 'Off'; -      'allow_url_include' : series => '7', sapi => 'fpm', value => 'Off'; -      'disable_functions' : series => '7', sapi => 'fpm', value => $disable_functions; +      'allow_url_fopen_fpm'   : name => 'allow_url_fopen',   series => '7', sapi => 'fpm', value => 'Off'; +      'allow_url_include_fpm' : name => 'allow_url_include', series => '7', sapi => 'fpm', value => 'Off'; +      'disable_functions_fpm' : name => 'disable_functions', series => '7', sapi => 'fpm', value => $disable_functions;      }    }  } | 
