Commit 0dfb2d97 authored by Marius Burkard's avatar Marius Burkard
Browse files

- changed fpm socket group to fix access privilegue problems (does not decrease security!)

parent bd4c2e96
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -3149,7 +3149,7 @@ class apache2_plugin {
		$tpl->setVar('fpm_pool', $pool_name);
		$tpl->setVar('fpm_port', $web_config['php_fpm_start_port'] + $data['new']['domain_id'] - 1);
		$tpl->setVar('fpm_user', $data['new']['system_user']);
		$tpl->setVar('fpm_group', $data['new']['system_group']);
		$tpl->setVar('fpm_group', $web_config['group']);
		$tpl->setVar('fpm_domain', $data['new']['domain']);
		$tpl->setVar('pm', $data['new']['pm']);
		$tpl->setVar('pm_max_children', $data['new']['pm_max_children']);
+1 −1
Original line number Diff line number Diff line
@@ -2764,7 +2764,7 @@ class nginx_plugin {
		$tpl->setVar('fpm_pool', $pool_name);
		$tpl->setVar('fpm_port', $web_config['php_fpm_start_port'] + $data['new']['domain_id'] - 1);
		$tpl->setVar('fpm_user', $data['new']['system_user']);
		$tpl->setVar('fpm_group', $data['new']['system_group']);
		$tpl->setVar('fpm_group', $web_config['group']);
		$tpl->setVar('pm', $data['new']['pm']);
		$tpl->setVar('pm_max_children', $data['new']['pm_max_children']);
		$tpl->setVar('pm_start_servers', $data['new']['pm_start_servers']);