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
7 hours 34 min ago
12 hours 26 min ago
21 hours 18 min ago
22 hours 18 min ago
1 day 2 hours ago
1 day 3 hours ago
1 day 6 hours ago
1 day 14 hours ago
1 day 23 hours ago
2 days 36 min ago