diff --git a/install/lib/installer_base.lib.php b/install/lib/installer_base.lib.php index b69912befabeb67e5ad124eaccbe5bface2cf3d5..7e6fc23790ab38c31f1dd2f727a86218a8688332 100644 --- a/install/lib/installer_base.lib.php +++ b/install/lib/installer_base.lib.php @@ -1459,9 +1459,18 @@ class installer_base { $content = str_replace('{apps_vhost_port}', $conf['web']['apps_vhost_port'], $content); $content = str_replace('{apps_vhost_dir}', $conf['web']['website_basedir'].'/apps', $content); $content = str_replace('{apps_vhost_servername}', $apps_vhost_servername, $content); - $content = str_replace('{fpm_port}', $conf['nginx']['php_fpm_start_port'], $content); + $content = str_replace('{fpm_port}', ($conf['nginx']['php_fpm_start_port']+1), $content); wf($vhost_conf_dir.'/apps.vhost', $content); + + // PHP-FPM + // Dont just copy over the php-fpm pool template but add some custom settings + $content = rf('tpl/php_fpm_pool.conf.master'); + $content = str_replace('{fpm_pool}', 'apps', $content); + $content = str_replace('{fpm_port}', ($conf['nginx']['php_fpm_start_port']+1), $content); + $content = str_replace('{fpm_user}', $apps_vhost_user, $content); + $content = str_replace('{fpm_group}', $apps_vhost_group, $content); + wf($conf['nginx']['php_fpm_pool_dir'].'/apps.conf', $content); //copy('tpl/nginx_ispconfig.vhost.master', "$vhost_conf_dir/ispconfig.vhost"); //* and create the symlink diff --git a/interface/web/admin/templates/server_config_web_edit.htm b/interface/web/admin/templates/server_config_web_edit.htm index a7d1026a005f38da140504cc21dd51c2dbe52c37..4b85025f51f9a0958adade1e317fe8cda49d9dc9 100644 --- a/interface/web/admin/templates/server_config_web_edit.htm +++ b/interface/web/admin/templates/server_config_web_edit.htm @@ -8,7 +8,7 @@

{tmpl_var name='server_type_txt'}

- {tmpl_var name='server_type'}
@@ -55,7 +55,7 @@
-
+

{tmpl_var name='security_level_txt'}