Hi,
First of all: ISPConfig, amazing open source solution! It runs very light and the source code looks good.
But, I have noticed that when we do a change on the sites configuration (in the ISPCONFIG panel), Apache will be restarted. This is not so nice, cause when Apache is busy with processing some scripts those processes will be stopped. It's better to use the graceful parameter, so Apache restarts, but the running scripts will continue running.
I fixed it by changing:
/usr/local/ispconfig/server/mods-available/web_module.inc.php
if($action == 'restart') {
exec($conf['init_scripts'] . '/' . $daemon . ' restart');
}
To:
if($action == 'restart') {
exec($conf['init_scripts'] . '/' . $daemon . ' graceful');
}
Recent comments
2 days 22 hours ago
3 days 6 hours ago
3 days 9 hours ago
3 days 11 hours ago
3 days 12 hours ago
3 days 14 hours ago
3 days 15 hours ago
3 days 16 hours ago
4 days 8 hours ago
4 days 9 hours ago