Move php-fpm tempalte to the correct location

This commit is contained in:
Daniel Berteaud 2017-07-13 18:26:59 +02:00
parent 0dfa5b6d3b
commit 40668f71d9

View File

@ -1,6 +1,7 @@
{ {
if ((${'tt-rss'}{status} || 'disabled') eq 'enabled){ if ($PHP_VERSION eq '71'){
$OUT .=<<_EOF; if ((${'tt-rss'}{status} || 'disabled') eq 'enabled'){
$OUT .=<<_EOF;
[php71-tt-rss] [php71-tt-rss]
user = www user = www
@ -40,8 +41,9 @@ php_admin_flag[allow_url_include] = off
php_admin_value[session.save_handler] = files php_admin_value[session.save_handler] = files
_EOF _EOF
} }
else{ else{
$OUT .= '; Tiny Tiny RSS is disabled'; $OUT .= '; Tiny Tiny RSS is disabled';
}
} }
} }