|
|
@ -4,8 +4,10 @@ use esmith::AccountsDB; |
|
|
|
my $a = esmith::AccountsDB->open_ro || die "Couldn't open the accounts database"; |
|
|
|
my $a = esmith::AccountsDB->open_ro || die "Couldn't open the accounts database"; |
|
|
|
|
|
|
|
|
|
|
|
foreach my $share ($a->get_all_by_prop(type => 'share')){ |
|
|
|
foreach my $share ($a->get_all_by_prop(type => 'share')){ |
|
|
|
my $pool_name = $share->key; |
|
|
|
|
|
|
|
next if (($share->prop('DynamicContent') || 'disabled') ne 'enabled'); |
|
|
|
next if (($share->prop('DynamicContent') || 'disabled') ne 'enabled'); |
|
|
|
|
|
|
|
my $version = $share->prop('PHPVersion') || ''; |
|
|
|
|
|
|
|
my $key = $share->key; |
|
|
|
|
|
|
|
my $pool_name = 'php' . $version . '-' . $key; |
|
|
|
my $memory_limit = $share->prop('PHPMemoryLimit') || '128M'; |
|
|
|
my $memory_limit = $share->prop('PHPMemoryLimit') || '128M'; |
|
|
|
my $max_execution_time = $share->prop('PHPMaxExecutionTime') || '30'; |
|
|
|
my $max_execution_time = $share->prop('PHPMaxExecutionTime') || '30'; |
|
|
|
my $max_input_time = $share->prop('PHPMaxInputTime') || '60'; |
|
|
|
my $max_input_time = $share->prop('PHPMaxInputTime') || '60'; |
|
|
@ -13,8 +15,8 @@ foreach my $share ($a->get_all_by_prop(type => 'share')){ |
|
|
|
my $post_max_size = $share->prop('PHPPostMaxSize') || '10M'; |
|
|
|
my $post_max_size = $share->prop('PHPPostMaxSize') || '10M'; |
|
|
|
my $upload_max_filesize = $share->prop('PHPUploadMaxFilesize') || '10M'; |
|
|
|
my $upload_max_filesize = $share->prop('PHPUploadMaxFilesize') || '10M'; |
|
|
|
my $file_upload = $share->prop('PHPFileUpload') || 'enabled'; |
|
|
|
my $file_upload = $share->prop('PHPFileUpload') || 'enabled'; |
|
|
|
my $open_basedir = $share->prop('PHPBaseDir') || '/home/e-smith/files/shares/' . $pool_name . |
|
|
|
my $open_basedir = $share->prop('PHPBaseDir') || '/home/e-smith/files/shares/' . $key . |
|
|
|
':/var/lib/php/' . $pool_name; |
|
|
|
':/var/lib/php/' . $key; |
|
|
|
my $disabled_functions = $share->prop('PHPDisabledFunctions') || 'system,show_source,' . |
|
|
|
my $disabled_functions = $share->prop('PHPDisabledFunctions') || 'system,show_source,' . |
|
|
|
'symlink,exec,dl,shell_exec,' . |
|
|
|
'symlink,exec,dl,shell_exec,' . |
|
|
|
'passthru,phpinfo,' . |
|
|
|
'passthru,phpinfo,' . |
|
|
@ -23,9 +25,8 @@ foreach my $share ($a->get_all_by_prop(type => 'share')){ |
|
|
|
$file_upload = ($file_upload =~ m/^1|yes|on|enabled$/) ? 'on' : 'off'; |
|
|
|
$file_upload = ($file_upload =~ m/^1|yes|on|enabled$/) ? 'on' : 'off'; |
|
|
|
$allow_url_fopen = ($allow_url_fopen =~ m/^1|yes|on|enabled$/) ? 'on' : 'off'; |
|
|
|
$allow_url_fopen = ($allow_url_fopen =~ m/^1|yes|on|enabled$/) ? 'on' : 'off'; |
|
|
|
$disabled_functions = join(', ', split /[,;:]/, $disabled_functions); |
|
|
|
$disabled_functions = join(', ', split /[,;:]/, $disabled_functions); |
|
|
|
my $version = $share->prop('PHPVersion') || 'default'; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
$OUT .=<<"_EOF" if ($version eq $PHP_VERSION or ($PHP_VERSION eq '' && $version eq 'default')); |
|
|
|
$OUT .=<<"_EOF" if ($version eq $PHP_VERSION); |
|
|
|
|
|
|
|
|
|
|
|
[$pool_name] |
|
|
|
[$pool_name] |
|
|
|
user = www |
|
|
|
user = www |
|
|
@ -41,12 +42,12 @@ pm.min_spare_servers = 3 |
|
|
|
pm.max_spare_servers = 4 |
|
|
|
pm.max_spare_servers = 4 |
|
|
|
pm.max_requests = 5000 |
|
|
|
pm.max_requests = 5000 |
|
|
|
request_terminate_timeout = 30 |
|
|
|
request_terminate_timeout = 30 |
|
|
|
slowlog = /var/log/php/$pool_name/slow.log |
|
|
|
slowlog = /var/log/php/$key/slow.log |
|
|
|
php_admin_value[session.save_path] = /var/lib/php/$pool_name/session |
|
|
|
php_admin_value[session.save_path] = /var/lib/php/$key/session |
|
|
|
php_admin_value[soap.wsdl_cache_dir] = /var/lib/php/$pool_name/wsdlcache |
|
|
|
php_admin_value[soap.wsdl_cache_dir] = /var/lib/php/$key/wsdlcache |
|
|
|
php_admin_value[opcache.file_cache] = /var/lib/php/$pool_name/opcache |
|
|
|
php_admin_value[opcache.file_cache] = /var/lib/php/$key/opcache |
|
|
|
php_admin_value[upload_tmp_dir] = /var/lib/php/$pool_name/tmp |
|
|
|
php_admin_value[upload_tmp_dir] = /var/lib/php/$key/tmp |
|
|
|
php_admin_value[error_log] = /var/log/php/$pool_name/error.log |
|
|
|
php_admin_value[error_log] = /var/log/php/$key/error.log |
|
|
|
php_admin_value[sendmail_path] = /usr/sbin/sendmail -t -i -f php@{ $DomainName } |
|
|
|
php_admin_value[sendmail_path] = /usr/sbin/sendmail -t -i -f php@{ $DomainName } |
|
|
|
php_admin_flag[display_errors] = off |
|
|
|
php_admin_flag[display_errors] = off |
|
|
|
php_admin_flag[log_errors] = on |
|
|
|
php_admin_flag[log_errors] = on |
|
|
|