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
1 changed files with 7 additions and 5 deletions

View File

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