Added restart hint after PHP-FPM configuration

This commit is contained in:
Robin Kluth
2014-05-23 23:06:40 +02:00
parent 72dd7fb138
commit 67bee6d620

View File

@@ -441,6 +441,9 @@ return array(
(Settings::Get('phpfpm.enabled_ownvhost') == '1') ? 'useradd -s /bin/false -g '.Settings::Get('phpfpm.vhost_httpgroup').' '.Settings::Get('phpfpm.vhost_httpuser') : null,
(Settings::Get('phpfpm.enabled_ownvhost') == '1') ? 'chown -R '.Settings::Get('phpfpm.vhost_httpuser').':'.Settings::Get('phpfpm.vhost_httpgroup').' '.FROXLOR_INSTALL_DIR : null,
(Settings::Get('phpfpm.enabled_ownvhost') == '1') ? 'a2dismod php5' : null
),
'restart' => array(
'/etc/init.d/apache2 restart'
)
)
)