mirror of
https://github.com/myvesta/vesta
synced 2025-07-05 20:41:53 -07:00
Release 0.9.8-16
This commit is contained in:
parent
e49317b9d0
commit
c59b6230a2
161 changed files with 521 additions and 159 deletions
|
@ -170,8 +170,8 @@ service=$DNS_SYSTEM
|
||||||
if [ ! -z "$service" ] && [ "$service" != 'remote' ]; then
|
if [ ! -z "$service" ] && [ "$service" != 'remote' ]; then
|
||||||
proc_name='named'
|
proc_name='named'
|
||||||
get_srv_state $service $proc_name
|
get_srv_state $service $proc_name
|
||||||
str="$str\nNAME='$service' SYSTEM='dns server' STATE='$state' CPU='$cpu'"
|
data="$data\nNAME='$service' SYSTEM='dns server' STATE='$state'"
|
||||||
str="$str MEM='$mem' RTIME='$rtime'"
|
data="$data CPU='$cpu' MEM='$mem' RTIME='$rtime'"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Checking MAIL system
|
# Checking MAIL system
|
||||||
|
@ -265,8 +265,8 @@ if [ ! -z "$FIREWALL_SYSTEM" ] && [ "$FIREWALL_SYSTEM" != 'remote' ]; then
|
||||||
if [ "$?" -eq 0 ]; then
|
if [ "$?" -eq 0 ]; then
|
||||||
state="running"
|
state="running"
|
||||||
fi
|
fi
|
||||||
str="$str\nNAME='$FIREWALL_SYSTEM' SYSTEM='firewall'"
|
data="$data\nNAME='$FIREWALL_SYSTEM' SYSTEM='firewall'"
|
||||||
str="$str STATE='$state' CPU='0' MEM='0' RTIME='0'"
|
data="$data STATE='$state' CPU='0' MEM='0' RTIME='0'"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Checking FIREWALL Fail2ban extention
|
# Checking FIREWALL Fail2ban extention
|
||||||
|
|
5
install/debian/7/templates/web/apache2/basedir.stpl
Executable file → Normal file
5
install/debian/7/templates/web/apache2/basedir.stpl
Executable file → Normal file
|
@ -15,7 +15,10 @@
|
||||||
AllowOverride All
|
AllowOverride All
|
||||||
SSLRequireSSL
|
SSLRequireSSL
|
||||||
Options +Includes -Indexes +ExecCGI
|
Options +Includes -Indexes +ExecCGI
|
||||||
php_admin_value open_basedir %docroot%
|
php_admin_value open_basedir %docroot%:%home%/%user%/tmp
|
||||||
|
php_admin_value upload_tmp_dir %home%/%user%/tmp
|
||||||
|
php_admin_value session.save_path %home%/%user%/tmp
|
||||||
|
php_admin_value sendmail_path "/usr/sbin/sendmail -t -i -f info@%domain%"
|
||||||
</Directory>
|
</Directory>
|
||||||
<Directory %home%/%user%/web/%domain%/stats>
|
<Directory %home%/%user%/web/%domain%/stats>
|
||||||
AllowOverride All
|
AllowOverride All
|
||||||
|
|
5
install/debian/7/templates/web/apache2/basedir.tpl
Executable file → Normal file
5
install/debian/7/templates/web/apache2/basedir.tpl
Executable file → Normal file
|
@ -14,7 +14,10 @@
|
||||||
<Directory %docroot%>
|
<Directory %docroot%>
|
||||||
AllowOverride All
|
AllowOverride All
|
||||||
Options +Includes -Indexes +ExecCGI
|
Options +Includes -Indexes +ExecCGI
|
||||||
php_admin_value open_basedir %docroot%
|
php_admin_value open_basedir %docroot%:%home%/%user%/tmp
|
||||||
|
php_admin_value upload_tmp_dir %home%/%user%/tmp
|
||||||
|
php_admin_value session.save_path %home%/%user%/tmp
|
||||||
|
php_admin_value sendmail_path "/usr/sbin/sendmail -t -i -f info@%domain%"
|
||||||
</Directory>
|
</Directory>
|
||||||
<Directory %home%/%user%/web/%domain%/stats>
|
<Directory %home%/%user%/web/%domain%/stats>
|
||||||
AllowOverride All
|
AllowOverride All
|
||||||
|
|
3
install/debian/7/templates/web/apache2/default.stpl
Executable file → Normal file
3
install/debian/7/templates/web/apache2/default.stpl
Executable file → Normal file
|
@ -15,6 +15,9 @@
|
||||||
AllowOverride All
|
AllowOverride All
|
||||||
SSLRequireSSL
|
SSLRequireSSL
|
||||||
Options +Includes -Indexes +ExecCGI
|
Options +Includes -Indexes +ExecCGI
|
||||||
|
php_admin_value open_basedir %docroot%:%home%/%user%/tmp
|
||||||
|
php_admin_value upload_tmp_dir %home%/%user%/tmp
|
||||||
|
php_admin_value session.save_path %home%/%user%/tmp
|
||||||
</Directory>
|
</Directory>
|
||||||
<Directory %home%/%user%/web/%domain%/stats>
|
<Directory %home%/%user%/web/%domain%/stats>
|
||||||
AllowOverride All
|
AllowOverride All
|
||||||
|
|
3
install/debian/7/templates/web/apache2/default.tpl
Executable file → Normal file
3
install/debian/7/templates/web/apache2/default.tpl
Executable file → Normal file
|
@ -14,6 +14,9 @@
|
||||||
<Directory %docroot%>
|
<Directory %docroot%>
|
||||||
AllowOverride All
|
AllowOverride All
|
||||||
Options +Includes -Indexes +ExecCGI
|
Options +Includes -Indexes +ExecCGI
|
||||||
|
php_admin_value open_basedir %docroot%:%home%/%user%/tmp
|
||||||
|
php_admin_value upload_tmp_dir %home%/%user%/tmp
|
||||||
|
php_admin_value session.save_path %home%/%user%/tmp
|
||||||
</Directory>
|
</Directory>
|
||||||
<Directory %home%/%user%/web/%domain%/stats>
|
<Directory %home%/%user%/web/%domain%/stats>
|
||||||
AllowOverride All
|
AllowOverride All
|
||||||
|
|
6
install/debian/7/templates/web/apache2/hosting.stpl
Executable file → Normal file
6
install/debian/7/templates/web/apache2/hosting.stpl
Executable file → Normal file
|
@ -15,20 +15,20 @@
|
||||||
AllowOverride All
|
AllowOverride All
|
||||||
SSLRequireSSL
|
SSLRequireSSL
|
||||||
Options +Includes -Indexes +ExecCGI
|
Options +Includes -Indexes +ExecCGI
|
||||||
php_admin_value upload_tmp_dir %home%/%user%/tmp
|
|
||||||
php_admin_value upload_max_filesize 10M
|
php_admin_value upload_max_filesize 10M
|
||||||
php_admin_value max_execution_time 20
|
php_admin_value max_execution_time 20
|
||||||
php_admin_value post_max_size 8M
|
php_admin_value post_max_size 8M
|
||||||
php_admin_value memory_limit 32M
|
php_admin_value memory_limit 32M
|
||||||
php_admin_flag mysql.allow_persistent off
|
php_admin_flag mysql.allow_persistent off
|
||||||
php_admin_flag safe_mode off
|
php_admin_flag safe_mode off
|
||||||
|
php_admin_value sendmail_path "/usr/sbin/sendmail -t -i -f info@%domain%"
|
||||||
|
php_admin_value open_basedir %docroot%:%home%/%user%/tmp:/bin:/usr/bin:/usr/local/bin:/var/www/html:/tmp:/usr/share:/etc/phpMyAdmin:/etc/phpmyadmin:/var/lib/phpmyadmin:/etc/roundcubemail:/etc/roundcube:/var/lib/roundcube
|
||||||
|
php_admin_value upload_tmp_dir %home%/%user%/tmp
|
||||||
php_admin_value session.save_path %home%/%user%/tmp
|
php_admin_value session.save_path %home%/%user%/tmp
|
||||||
php_admin_value sendmail_path '/usr/sbin/sendmail -t -i -f %email%'
|
|
||||||
</Directory>
|
</Directory>
|
||||||
<Directory %home%/%user%/web/%domain%/stats>
|
<Directory %home%/%user%/web/%domain%/stats>
|
||||||
AllowOverride All
|
AllowOverride All
|
||||||
</Directory>
|
</Directory>
|
||||||
php_admin_value open_basedir %home%/%user%/web:%home%/%user%/tmp:/bin:/usr/bin:/usr/local/bin:/var/www/html:/tmp:/usr/share:/etc/phpMyAdmin:/etc/phpmyadmin:/var/lib/phpmyadmin:/etc/roundcubemail:/etc/roundcube:/var/lib/roundcube
|
|
||||||
SSLEngine on
|
SSLEngine on
|
||||||
SSLVerifyClient none
|
SSLVerifyClient none
|
||||||
SSLCertificateFile %ssl_crt%
|
SSLCertificateFile %ssl_crt%
|
||||||
|
|
5
install/debian/7/templates/web/apache2/hosting.tpl
Executable file → Normal file
5
install/debian/7/templates/web/apache2/hosting.tpl
Executable file → Normal file
|
@ -21,13 +21,14 @@
|
||||||
php_admin_value memory_limit 32M
|
php_admin_value memory_limit 32M
|
||||||
php_admin_flag mysql.allow_persistent off
|
php_admin_flag mysql.allow_persistent off
|
||||||
php_admin_flag safe_mode off
|
php_admin_flag safe_mode off
|
||||||
|
php_admin_value sendmail_path "/usr/sbin/sendmail -t -i -f info@%domain%"
|
||||||
|
php_admin_value open_basedir %docroot%:%home%/%user%/tmp:/bin:/usr/bin:/usr/local/bin:/var/www/html:/tmp:/usr/share:/etc/phpMyAdmin:/etc/phpmyadmin:/var/lib/phpmyadmin:/etc/roundcubemail:/etc/roundcube:/var/lib/roundcube
|
||||||
|
php_admin_value upload_tmp_dir %home%/%user%/tmp
|
||||||
php_admin_value session.save_path %home%/%user%/tmp
|
php_admin_value session.save_path %home%/%user%/tmp
|
||||||
php_admin_value sendmail_path '/usr/sbin/sendmail -t -i -f %email%'
|
|
||||||
</Directory>
|
</Directory>
|
||||||
<Directory %home%/%user%/web/%domain%/stats>
|
<Directory %home%/%user%/web/%domain%/stats>
|
||||||
AllowOverride All
|
AllowOverride All
|
||||||
</Directory>
|
</Directory>
|
||||||
php_admin_value open_basedir %home%/%user%/web:%home%/%user%/tmp:/bin:/usr/bin:/usr/local/bin:/var/www/html:/tmp:/usr/share:/etc/phpMyAdmin:/etc/phpmyadmin:/var/lib/phpmyadmin:/etc/roundcubemail:/etc/roundcube:/var/lib/roundcube
|
|
||||||
<IfModule mod_ruid2.c>
|
<IfModule mod_ruid2.c>
|
||||||
RMode config
|
RMode config
|
||||||
RUidGid %user% %group%
|
RUidGid %user% %group%
|
||||||
|
|
3
install/debian/7/templates/web/apache2/phpcgi.stpl
Executable file → Normal file
3
install/debian/7/templates/web/apache2/phpcgi.stpl
Executable file → Normal file
|
@ -15,6 +15,9 @@
|
||||||
SSLRequireSSL
|
SSLRequireSSL
|
||||||
AllowOverride All
|
AllowOverride All
|
||||||
Options +Includes -Indexes +ExecCGI
|
Options +Includes -Indexes +ExecCGI
|
||||||
|
php_admin_value open_basedir %docroot%:%home%/%user%/tmp
|
||||||
|
php_admin_value upload_tmp_dir %home%/%user%/tmp
|
||||||
|
php_admin_value session.save_path %home%/%user%/tmp
|
||||||
Action phpcgi-script /cgi-bin/php
|
Action phpcgi-script /cgi-bin/php
|
||||||
<Files *.php>
|
<Files *.php>
|
||||||
SetHandler phpcgi-script
|
SetHandler phpcgi-script
|
||||||
|
|
3
install/debian/7/templates/web/apache2/phpcgi.tpl
Executable file → Normal file
3
install/debian/7/templates/web/apache2/phpcgi.tpl
Executable file → Normal file
|
@ -14,6 +14,9 @@
|
||||||
<Directory %docroot%>
|
<Directory %docroot%>
|
||||||
AllowOverride All
|
AllowOverride All
|
||||||
Options +Includes -Indexes +ExecCGI
|
Options +Includes -Indexes +ExecCGI
|
||||||
|
php_admin_value open_basedir %docroot%:%home%/%user%/tmp
|
||||||
|
php_admin_value upload_tmp_dir %home%/%user%/tmp
|
||||||
|
php_admin_value session.save_path %home%/%user%/tmp
|
||||||
Action phpcgi-script /cgi-bin/php
|
Action phpcgi-script /cgi-bin/php
|
||||||
<Files *.php>
|
<Files *.php>
|
||||||
SetHandler phpcgi-script
|
SetHandler phpcgi-script
|
||||||
|
|
3
install/debian/7/templates/web/apache2/phpfcgid.stpl
Executable file → Normal file
3
install/debian/7/templates/web/apache2/phpfcgid.stpl
Executable file → Normal file
|
@ -15,6 +15,9 @@
|
||||||
SSLRequireSSL
|
SSLRequireSSL
|
||||||
AllowOverride All
|
AllowOverride All
|
||||||
Options +Includes -Indexes +ExecCGI
|
Options +Includes -Indexes +ExecCGI
|
||||||
|
php_admin_value open_basedir %docroot%:%home%/%user%/tmp
|
||||||
|
php_admin_value upload_tmp_dir %home%/%user%/tmp
|
||||||
|
php_admin_value session.save_path %home%/%user%/tmp
|
||||||
<Files *.php>
|
<Files *.php>
|
||||||
SetHandler fcgid-script
|
SetHandler fcgid-script
|
||||||
</Files>
|
</Files>
|
||||||
|
|
3
install/debian/7/templates/web/apache2/phpfcgid.tpl
Executable file → Normal file
3
install/debian/7/templates/web/apache2/phpfcgid.tpl
Executable file → Normal file
|
@ -14,6 +14,9 @@
|
||||||
<Directory %docroot%>
|
<Directory %docroot%>
|
||||||
AllowOverride All
|
AllowOverride All
|
||||||
Options +Includes -Indexes +ExecCGI
|
Options +Includes -Indexes +ExecCGI
|
||||||
|
php_admin_value open_basedir %docroot%:%home%/%user%/tmp
|
||||||
|
php_admin_value upload_tmp_dir %home%/%user%/tmp
|
||||||
|
php_admin_value session.save_path %home%/%user%/tmp
|
||||||
<Files *.php>
|
<Files *.php>
|
||||||
SetHandler fcgid-script
|
SetHandler fcgid-script
|
||||||
</Files>
|
</Files>
|
||||||
|
|
5
install/debian/8/templates/web/apache2/basedir.stpl
Executable file → Normal file
5
install/debian/8/templates/web/apache2/basedir.stpl
Executable file → Normal file
|
@ -15,7 +15,10 @@
|
||||||
AllowOverride All
|
AllowOverride All
|
||||||
SSLRequireSSL
|
SSLRequireSSL
|
||||||
Options +Includes -Indexes +ExecCGI
|
Options +Includes -Indexes +ExecCGI
|
||||||
php_admin_value open_basedir %docroot%
|
php_admin_value open_basedir %docroot%:%home%/%user%/tmp
|
||||||
|
php_admin_value upload_tmp_dir %home%/%user%/tmp
|
||||||
|
php_admin_value session.save_path %home%/%user%/tmp
|
||||||
|
php_admin_value sendmail_path "/usr/sbin/sendmail -t -i -f info@%domain%"
|
||||||
</Directory>
|
</Directory>
|
||||||
<Directory %home%/%user%/web/%domain%/stats>
|
<Directory %home%/%user%/web/%domain%/stats>
|
||||||
AllowOverride All
|
AllowOverride All
|
||||||
|
|
5
install/debian/8/templates/web/apache2/basedir.tpl
Executable file → Normal file
5
install/debian/8/templates/web/apache2/basedir.tpl
Executable file → Normal file
|
@ -14,7 +14,10 @@
|
||||||
<Directory %docroot%>
|
<Directory %docroot%>
|
||||||
AllowOverride All
|
AllowOverride All
|
||||||
Options +Includes -Indexes +ExecCGI
|
Options +Includes -Indexes +ExecCGI
|
||||||
php_admin_value open_basedir %docroot%
|
php_admin_value open_basedir %docroot%:%home%/%user%/tmp
|
||||||
|
php_admin_value upload_tmp_dir %home%/%user%/tmp
|
||||||
|
php_admin_value session.save_path %home%/%user%/tmp
|
||||||
|
php_admin_value sendmail_path "/usr/sbin/sendmail -t -i -f info@%domain%"
|
||||||
</Directory>
|
</Directory>
|
||||||
<Directory %home%/%user%/web/%domain%/stats>
|
<Directory %home%/%user%/web/%domain%/stats>
|
||||||
AllowOverride All
|
AllowOverride All
|
||||||
|
|
3
install/debian/8/templates/web/apache2/default.stpl
Executable file → Normal file
3
install/debian/8/templates/web/apache2/default.stpl
Executable file → Normal file
|
@ -15,6 +15,9 @@
|
||||||
AllowOverride All
|
AllowOverride All
|
||||||
SSLRequireSSL
|
SSLRequireSSL
|
||||||
Options +Includes -Indexes +ExecCGI
|
Options +Includes -Indexes +ExecCGI
|
||||||
|
php_admin_value open_basedir %docroot%:%home%/%user%/tmp
|
||||||
|
php_admin_value upload_tmp_dir %home%/%user%/tmp
|
||||||
|
php_admin_value session.save_path %home%/%user%/tmp
|
||||||
</Directory>
|
</Directory>
|
||||||
<Directory %home%/%user%/web/%domain%/stats>
|
<Directory %home%/%user%/web/%domain%/stats>
|
||||||
AllowOverride All
|
AllowOverride All
|
||||||
|
|
3
install/debian/8/templates/web/apache2/default.tpl
Executable file → Normal file
3
install/debian/8/templates/web/apache2/default.tpl
Executable file → Normal file
|
@ -14,6 +14,9 @@
|
||||||
<Directory %docroot%>
|
<Directory %docroot%>
|
||||||
AllowOverride All
|
AllowOverride All
|
||||||
Options +Includes -Indexes +ExecCGI
|
Options +Includes -Indexes +ExecCGI
|
||||||
|
php_admin_value open_basedir %docroot%:%home%/%user%/tmp
|
||||||
|
php_admin_value upload_tmp_dir %home%/%user%/tmp
|
||||||
|
php_admin_value session.save_path %home%/%user%/tmp
|
||||||
</Directory>
|
</Directory>
|
||||||
<Directory %home%/%user%/web/%domain%/stats>
|
<Directory %home%/%user%/web/%domain%/stats>
|
||||||
AllowOverride All
|
AllowOverride All
|
||||||
|
|
6
install/debian/8/templates/web/apache2/hosting.stpl
Executable file → Normal file
6
install/debian/8/templates/web/apache2/hosting.stpl
Executable file → Normal file
|
@ -15,20 +15,20 @@
|
||||||
AllowOverride All
|
AllowOverride All
|
||||||
SSLRequireSSL
|
SSLRequireSSL
|
||||||
Options +Includes -Indexes +ExecCGI
|
Options +Includes -Indexes +ExecCGI
|
||||||
php_admin_value upload_tmp_dir %home%/%user%/tmp
|
|
||||||
php_admin_value upload_max_filesize 10M
|
php_admin_value upload_max_filesize 10M
|
||||||
php_admin_value max_execution_time 20
|
php_admin_value max_execution_time 20
|
||||||
php_admin_value post_max_size 8M
|
php_admin_value post_max_size 8M
|
||||||
php_admin_value memory_limit 32M
|
php_admin_value memory_limit 32M
|
||||||
php_admin_flag mysql.allow_persistent off
|
php_admin_flag mysql.allow_persistent off
|
||||||
php_admin_flag safe_mode off
|
php_admin_flag safe_mode off
|
||||||
|
php_admin_value sendmail_path "/usr/sbin/sendmail -t -i -f info@%domain%"
|
||||||
|
php_admin_value open_basedir %docroot%:%home%/%user%/tmp:/bin:/usr/bin:/usr/local/bin:/var/www/html:/tmp:/usr/share:/etc/phpMyAdmin:/etc/phpmyadmin:/var/lib/phpmyadmin:/etc/roundcubemail:/etc/roundcube:/var/lib/roundcube
|
||||||
|
php_admin_value upload_tmp_dir %home%/%user%/tmp
|
||||||
php_admin_value session.save_path %home%/%user%/tmp
|
php_admin_value session.save_path %home%/%user%/tmp
|
||||||
php_admin_value sendmail_path '/usr/sbin/sendmail -t -i -f %email%'
|
|
||||||
</Directory>
|
</Directory>
|
||||||
<Directory %home%/%user%/web/%domain%/stats>
|
<Directory %home%/%user%/web/%domain%/stats>
|
||||||
AllowOverride All
|
AllowOverride All
|
||||||
</Directory>
|
</Directory>
|
||||||
php_admin_value open_basedir %home%/%user%/web:%home%/%user%/tmp:/bin:/usr/bin:/usr/local/bin:/var/www/html:/tmp:/usr/share:/etc/phpMyAdmin:/etc/phpmyadmin:/var/lib/phpmyadmin:/etc/roundcubemail:/etc/roundcube:/var/lib/roundcube
|
|
||||||
SSLEngine on
|
SSLEngine on
|
||||||
SSLVerifyClient none
|
SSLVerifyClient none
|
||||||
SSLCertificateFile %ssl_crt%
|
SSLCertificateFile %ssl_crt%
|
||||||
|
|
6
install/debian/8/templates/web/apache2/hosting.tpl
Executable file → Normal file
6
install/debian/8/templates/web/apache2/hosting.tpl
Executable file → Normal file
|
@ -14,20 +14,20 @@
|
||||||
<Directory %docroot%>
|
<Directory %docroot%>
|
||||||
AllowOverride All
|
AllowOverride All
|
||||||
Options +Includes -Indexes +ExecCGI
|
Options +Includes -Indexes +ExecCGI
|
||||||
php_admin_value upload_tmp_dir %home%/%user%/tmp
|
|
||||||
php_admin_value upload_max_filesize 10M
|
php_admin_value upload_max_filesize 10M
|
||||||
php_admin_value max_execution_time 20
|
php_admin_value max_execution_time 20
|
||||||
php_admin_value post_max_size 8M
|
php_admin_value post_max_size 8M
|
||||||
php_admin_value memory_limit 32M
|
php_admin_value memory_limit 32M
|
||||||
php_admin_flag mysql.allow_persistent off
|
php_admin_flag mysql.allow_persistent off
|
||||||
php_admin_flag safe_mode off
|
php_admin_flag safe_mode off
|
||||||
|
php_admin_value sendmail_path "/usr/sbin/sendmail -t -i -f info@%domain%"
|
||||||
|
php_admin_value open_basedir %docroot%:%home%/%user%/tmp:/bin:/usr/bin:/usr/local/bin:/var/www/html:/tmp:/usr/share:/etc/phpMyAdmin:/etc/phpmyadmin:/var/lib/phpmyadmin:/etc/roundcubemail:/etc/roundcube:/var/lib/roundcube
|
||||||
|
php_admin_value upload_tmp_dir %home%/%user%/tmp
|
||||||
php_admin_value session.save_path %home%/%user%/tmp
|
php_admin_value session.save_path %home%/%user%/tmp
|
||||||
php_admin_value sendmail_path '/usr/sbin/sendmail -t -i -f %email%'
|
|
||||||
</Directory>
|
</Directory>
|
||||||
<Directory %home%/%user%/web/%domain%/stats>
|
<Directory %home%/%user%/web/%domain%/stats>
|
||||||
AllowOverride All
|
AllowOverride All
|
||||||
</Directory>
|
</Directory>
|
||||||
php_admin_value open_basedir %home%/%user%/web:%home%/%user%/tmp:/bin:/usr/bin:/usr/local/bin:/var/www/html:/tmp:/usr/share:/etc/phpMyAdmin:/etc/phpmyadmin:/var/lib/phpmyadmin:/etc/roundcubemail:/etc/roundcube:/var/lib/roundcube
|
|
||||||
<IfModule mod_ruid2.c>
|
<IfModule mod_ruid2.c>
|
||||||
RMode config
|
RMode config
|
||||||
RUidGid %user% %group%
|
RUidGid %user% %group%
|
||||||
|
|
3
install/debian/8/templates/web/apache2/phpcgi.stpl
Executable file → Normal file
3
install/debian/8/templates/web/apache2/phpcgi.stpl
Executable file → Normal file
|
@ -15,6 +15,9 @@
|
||||||
SSLRequireSSL
|
SSLRequireSSL
|
||||||
AllowOverride All
|
AllowOverride All
|
||||||
Options +Includes -Indexes +ExecCGI
|
Options +Includes -Indexes +ExecCGI
|
||||||
|
php_admin_value open_basedir %docroot%:%home%/%user%/tmp
|
||||||
|
php_admin_value upload_tmp_dir %home%/%user%/tmp
|
||||||
|
php_admin_value session.save_path %home%/%user%/tmp
|
||||||
Action phpcgi-script /cgi-bin/php
|
Action phpcgi-script /cgi-bin/php
|
||||||
<Files *.php>
|
<Files *.php>
|
||||||
SetHandler phpcgi-script
|
SetHandler phpcgi-script
|
||||||
|
|
3
install/debian/8/templates/web/apache2/phpcgi.tpl
Executable file → Normal file
3
install/debian/8/templates/web/apache2/phpcgi.tpl
Executable file → Normal file
|
@ -14,6 +14,9 @@
|
||||||
<Directory %docroot%>
|
<Directory %docroot%>
|
||||||
AllowOverride All
|
AllowOverride All
|
||||||
Options +Includes -Indexes +ExecCGI
|
Options +Includes -Indexes +ExecCGI
|
||||||
|
php_admin_value open_basedir %docroot%:%home%/%user%/tmp
|
||||||
|
php_admin_value upload_tmp_dir %home%/%user%/tmp
|
||||||
|
php_admin_value session.save_path %home%/%user%/tmp
|
||||||
Action phpcgi-script /cgi-bin/php
|
Action phpcgi-script /cgi-bin/php
|
||||||
<Files *.php>
|
<Files *.php>
|
||||||
SetHandler phpcgi-script
|
SetHandler phpcgi-script
|
||||||
|
|
3
install/debian/8/templates/web/apache2/phpfcgid.stpl
Executable file → Normal file
3
install/debian/8/templates/web/apache2/phpfcgid.stpl
Executable file → Normal file
|
@ -15,6 +15,9 @@
|
||||||
SSLRequireSSL
|
SSLRequireSSL
|
||||||
AllowOverride All
|
AllowOverride All
|
||||||
Options +Includes -Indexes +ExecCGI
|
Options +Includes -Indexes +ExecCGI
|
||||||
|
php_admin_value open_basedir %docroot%:%home%/%user%/tmp
|
||||||
|
php_admin_value upload_tmp_dir %home%/%user%/tmp
|
||||||
|
php_admin_value session.save_path %home%/%user%/tmp
|
||||||
<Files *.php>
|
<Files *.php>
|
||||||
SetHandler fcgid-script
|
SetHandler fcgid-script
|
||||||
</Files>
|
</Files>
|
||||||
|
|
3
install/debian/8/templates/web/apache2/phpfcgid.tpl
Executable file → Normal file
3
install/debian/8/templates/web/apache2/phpfcgid.tpl
Executable file → Normal file
|
@ -14,6 +14,9 @@
|
||||||
<Directory %docroot%>
|
<Directory %docroot%>
|
||||||
AllowOverride All
|
AllowOverride All
|
||||||
Options +Includes -Indexes +ExecCGI
|
Options +Includes -Indexes +ExecCGI
|
||||||
|
php_admin_value open_basedir %docroot%:%home%/%user%/tmp
|
||||||
|
php_admin_value upload_tmp_dir %home%/%user%/tmp
|
||||||
|
php_admin_value session.save_path %home%/%user%/tmp
|
||||||
<Files *.php>
|
<Files *.php>
|
||||||
SetHandler fcgid-script
|
SetHandler fcgid-script
|
||||||
</Files>
|
</Files>
|
||||||
|
|
5
install/rhel/5/templates/web/httpd/basedir.stpl
Executable file → Normal file
5
install/rhel/5/templates/web/httpd/basedir.stpl
Executable file → Normal file
|
@ -15,7 +15,10 @@
|
||||||
AllowOverride All
|
AllowOverride All
|
||||||
SSLRequireSSL
|
SSLRequireSSL
|
||||||
Options +Includes -Indexes +ExecCGI
|
Options +Includes -Indexes +ExecCGI
|
||||||
php_admin_value open_basedir %docroot%
|
php_admin_value open_basedir %docroot%:%home%/%user%/tmp
|
||||||
|
php_admin_value upload_tmp_dir %home%/%user%/tmp
|
||||||
|
php_admin_value session.save_path %home%/%user%/tmp
|
||||||
|
php_admin_value sendmail_path "/usr/sbin/sendmail -t -i -f info@%domain%"
|
||||||
</Directory>
|
</Directory>
|
||||||
<Directory %home%/%user%/web/%domain%/stats>
|
<Directory %home%/%user%/web/%domain%/stats>
|
||||||
AllowOverride All
|
AllowOverride All
|
||||||
|
|
5
install/rhel/5/templates/web/httpd/basedir.tpl
Executable file → Normal file
5
install/rhel/5/templates/web/httpd/basedir.tpl
Executable file → Normal file
|
@ -14,7 +14,10 @@
|
||||||
<Directory %docroot%>
|
<Directory %docroot%>
|
||||||
AllowOverride All
|
AllowOverride All
|
||||||
Options +Includes -Indexes +ExecCGI
|
Options +Includes -Indexes +ExecCGI
|
||||||
php_admin_value open_basedir %docroot%
|
php_admin_value open_basedir %docroot%:%home%/%user%/tmp
|
||||||
|
php_admin_value upload_tmp_dir %home%/%user%/tmp
|
||||||
|
php_admin_value session.save_path %home%/%user%/tmp
|
||||||
|
php_admin_value sendmail_path "/usr/sbin/sendmail -t -i -f info@%domain%"
|
||||||
</Directory>
|
</Directory>
|
||||||
<Directory %home%/%user%/web/%domain%/stats>
|
<Directory %home%/%user%/web/%domain%/stats>
|
||||||
AllowOverride All
|
AllowOverride All
|
||||||
|
|
3
install/rhel/5/templates/web/httpd/default.stpl
Executable file → Normal file
3
install/rhel/5/templates/web/httpd/default.stpl
Executable file → Normal file
|
@ -15,6 +15,9 @@
|
||||||
AllowOverride All
|
AllowOverride All
|
||||||
SSLRequireSSL
|
SSLRequireSSL
|
||||||
Options +Includes -Indexes +ExecCGI
|
Options +Includes -Indexes +ExecCGI
|
||||||
|
php_admin_value open_basedir %docroot%:%home%/%user%/tmp
|
||||||
|
php_admin_value upload_tmp_dir %home%/%user%/tmp
|
||||||
|
php_admin_value session.save_path %home%/%user%/tmp
|
||||||
</Directory>
|
</Directory>
|
||||||
<Directory %home%/%user%/web/%domain%/stats>
|
<Directory %home%/%user%/web/%domain%/stats>
|
||||||
AllowOverride All
|
AllowOverride All
|
||||||
|
|
3
install/rhel/5/templates/web/httpd/default.tpl
Executable file → Normal file
3
install/rhel/5/templates/web/httpd/default.tpl
Executable file → Normal file
|
@ -14,6 +14,9 @@
|
||||||
<Directory %docroot%>
|
<Directory %docroot%>
|
||||||
AllowOverride All
|
AllowOverride All
|
||||||
Options +Includes -Indexes +ExecCGI
|
Options +Includes -Indexes +ExecCGI
|
||||||
|
php_admin_value open_basedir %docroot%:%home%/%user%/tmp
|
||||||
|
php_admin_value upload_tmp_dir %home%/%user%/tmp
|
||||||
|
php_admin_value session.save_path %home%/%user%/tmp
|
||||||
</Directory>
|
</Directory>
|
||||||
<Directory %home%/%user%/web/%domain%/stats>
|
<Directory %home%/%user%/web/%domain%/stats>
|
||||||
AllowOverride All
|
AllowOverride All
|
||||||
|
|
6
install/rhel/5/templates/web/httpd/hosting.stpl
Executable file → Normal file
6
install/rhel/5/templates/web/httpd/hosting.stpl
Executable file → Normal file
|
@ -15,20 +15,20 @@
|
||||||
AllowOverride All
|
AllowOverride All
|
||||||
SSLRequireSSL
|
SSLRequireSSL
|
||||||
Options +Includes -Indexes +ExecCGI
|
Options +Includes -Indexes +ExecCGI
|
||||||
php_admin_value upload_tmp_dir %home%/%user%/tmp
|
|
||||||
php_admin_value upload_max_filesize 10M
|
php_admin_value upload_max_filesize 10M
|
||||||
php_admin_value max_execution_time 20
|
php_admin_value max_execution_time 20
|
||||||
php_admin_value post_max_size 8M
|
php_admin_value post_max_size 8M
|
||||||
php_admin_value memory_limit 32M
|
php_admin_value memory_limit 32M
|
||||||
php_admin_flag mysql.allow_persistent off
|
php_admin_flag mysql.allow_persistent off
|
||||||
php_admin_flag safe_mode off
|
php_admin_flag safe_mode off
|
||||||
|
php_admin_value sendmail_path "/usr/sbin/sendmail -t -i -f info@%domain%"
|
||||||
|
php_admin_value open_basedir %docroot%:%home%/%user%/tmp:/bin:/usr/bin:/usr/local/bin:/var/www/html:/tmp:/usr/share:/etc/phpMyAdmin:/etc/phpmyadmin:/var/lib/phpmyadmin:/etc/roundcubemail:/etc/roundcube:/var/lib/roundcube
|
||||||
|
php_admin_value upload_tmp_dir %home%/%user%/tmp
|
||||||
php_admin_value session.save_path %home%/%user%/tmp
|
php_admin_value session.save_path %home%/%user%/tmp
|
||||||
php_admin_value sendmail_path '/usr/sbin/sendmail -t -i -f %email%'
|
|
||||||
</Directory>
|
</Directory>
|
||||||
<Directory %home%/%user%/web/%domain%/stats>
|
<Directory %home%/%user%/web/%domain%/stats>
|
||||||
AllowOverride All
|
AllowOverride All
|
||||||
</Directory>
|
</Directory>
|
||||||
php_admin_value open_basedir %home%/%user%/web:%home%/%user%/tmp:/bin:/usr/bin:/usr/local/bin:/var/www/html:/tmp:/usr/share:/etc/phpMyAdmin:/etc/phpmyadmin:/etc/roundcubemail:/etc/roundcube:/var/lib/roundcube
|
|
||||||
SSLEngine on
|
SSLEngine on
|
||||||
SSLVerifyClient none
|
SSLVerifyClient none
|
||||||
SSLCertificateFile %ssl_crt%
|
SSLCertificateFile %ssl_crt%
|
||||||
|
|
6
install/rhel/5/templates/web/httpd/hosting.tpl
Executable file → Normal file
6
install/rhel/5/templates/web/httpd/hosting.tpl
Executable file → Normal file
|
@ -14,20 +14,20 @@
|
||||||
<Directory %docroot%>
|
<Directory %docroot%>
|
||||||
AllowOverride All
|
AllowOverride All
|
||||||
Options +Includes -Indexes +ExecCGI
|
Options +Includes -Indexes +ExecCGI
|
||||||
php_admin_value upload_tmp_dir %home%/%user%/tmp
|
|
||||||
php_admin_value upload_max_filesize 10M
|
php_admin_value upload_max_filesize 10M
|
||||||
php_admin_value max_execution_time 20
|
php_admin_value max_execution_time 20
|
||||||
php_admin_value post_max_size 8M
|
php_admin_value post_max_size 8M
|
||||||
php_admin_value memory_limit 32M
|
php_admin_value memory_limit 32M
|
||||||
php_admin_flag mysql.allow_persistent off
|
php_admin_flag mysql.allow_persistent off
|
||||||
php_admin_flag safe_mode off
|
php_admin_flag safe_mode off
|
||||||
|
php_admin_value sendmail_path "/usr/sbin/sendmail -t -i -f info@%domain%"
|
||||||
|
php_admin_value open_basedir %docroot%:%home%/%user%/tmp:/bin:/usr/bin:/usr/local/bin:/var/www/html:/tmp:/usr/share:/etc/phpMyAdmin:/etc/phpmyadmin:/var/lib/phpmyadmin:/etc/roundcubemail:/etc/roundcube:/var/lib/roundcube
|
||||||
|
php_admin_value upload_tmp_dir %home%/%user%/tmp
|
||||||
php_admin_value session.save_path %home%/%user%/tmp
|
php_admin_value session.save_path %home%/%user%/tmp
|
||||||
php_admin_value sendmail_path '/usr/sbin/sendmail -t -i -f %email%'
|
|
||||||
</Directory>
|
</Directory>
|
||||||
<Directory %home%/%user%/web/%domain%/stats>
|
<Directory %home%/%user%/web/%domain%/stats>
|
||||||
AllowOverride All
|
AllowOverride All
|
||||||
</Directory>
|
</Directory>
|
||||||
php_admin_value open_basedir %home%/%user%/web:%home%/%user%/tmp:/bin:/usr/bin:/usr/local/bin:/var/www/html:/tmp:/usr/share:/etc/phpMyAdmin:/etc/phpmyadmin:/etc/roundcubemail:/etc/roundcube:/var/lib/roundcube
|
|
||||||
<IfModule mod_ruid2.c>
|
<IfModule mod_ruid2.c>
|
||||||
RMode config
|
RMode config
|
||||||
RUidGid %user% %group%
|
RUidGid %user% %group%
|
||||||
|
|
3
install/rhel/5/templates/web/httpd/phpcgi.stpl
Executable file → Normal file
3
install/rhel/5/templates/web/httpd/phpcgi.stpl
Executable file → Normal file
|
@ -15,6 +15,9 @@
|
||||||
SSLRequireSSL
|
SSLRequireSSL
|
||||||
AllowOverride All
|
AllowOverride All
|
||||||
Options +Includes -Indexes +ExecCGI
|
Options +Includes -Indexes +ExecCGI
|
||||||
|
php_admin_value open_basedir %docroot%:%home%/%user%/tmp
|
||||||
|
php_admin_value upload_tmp_dir %home%/%user%/tmp
|
||||||
|
php_admin_value session.save_path %home%/%user%/tmp
|
||||||
Action phpcgi-script /cgi-bin/php
|
Action phpcgi-script /cgi-bin/php
|
||||||
<Files *.php>
|
<Files *.php>
|
||||||
SetHandler phpcgi-script
|
SetHandler phpcgi-script
|
||||||
|
|
3
install/rhel/5/templates/web/httpd/phpcgi.tpl
Executable file → Normal file
3
install/rhel/5/templates/web/httpd/phpcgi.tpl
Executable file → Normal file
|
@ -14,6 +14,9 @@
|
||||||
<Directory %docroot%>
|
<Directory %docroot%>
|
||||||
AllowOverride All
|
AllowOverride All
|
||||||
Options +Includes -Indexes +ExecCGI
|
Options +Includes -Indexes +ExecCGI
|
||||||
|
php_admin_value open_basedir %docroot%:%home%/%user%/tmp
|
||||||
|
php_admin_value upload_tmp_dir %home%/%user%/tmp
|
||||||
|
php_admin_value session.save_path %home%/%user%/tmp
|
||||||
Action phpcgi-script /cgi-bin/php
|
Action phpcgi-script /cgi-bin/php
|
||||||
<Files *.php>
|
<Files *.php>
|
||||||
SetHandler phpcgi-script
|
SetHandler phpcgi-script
|
||||||
|
|
3
install/rhel/5/templates/web/httpd/phpfcgid.stpl
Executable file → Normal file
3
install/rhel/5/templates/web/httpd/phpfcgid.stpl
Executable file → Normal file
|
@ -15,6 +15,9 @@
|
||||||
SSLRequireSSL
|
SSLRequireSSL
|
||||||
AllowOverride All
|
AllowOverride All
|
||||||
Options +Includes -Indexes +ExecCGI
|
Options +Includes -Indexes +ExecCGI
|
||||||
|
php_admin_value open_basedir %docroot%:%home%/%user%/tmp
|
||||||
|
php_admin_value upload_tmp_dir %home%/%user%/tmp
|
||||||
|
php_admin_value session.save_path %home%/%user%/tmp
|
||||||
<Files *.php>
|
<Files *.php>
|
||||||
SetHandler fcgid-script
|
SetHandler fcgid-script
|
||||||
</Files>
|
</Files>
|
||||||
|
|
3
install/rhel/5/templates/web/httpd/phpfcgid.tpl
Executable file → Normal file
3
install/rhel/5/templates/web/httpd/phpfcgid.tpl
Executable file → Normal file
|
@ -14,6 +14,9 @@
|
||||||
<Directory %docroot%>
|
<Directory %docroot%>
|
||||||
AllowOverride All
|
AllowOverride All
|
||||||
Options +Includes -Indexes +ExecCGI
|
Options +Includes -Indexes +ExecCGI
|
||||||
|
php_admin_value open_basedir %docroot%:%home%/%user%/tmp
|
||||||
|
php_admin_value upload_tmp_dir %home%/%user%/tmp
|
||||||
|
php_admin_value session.save_path %home%/%user%/tmp
|
||||||
<Files *.php>
|
<Files *.php>
|
||||||
SetHandler fcgid-script
|
SetHandler fcgid-script
|
||||||
</Files>
|
</Files>
|
||||||
|
|
5
install/rhel/6/templates/web/httpd/basedir.stpl
Executable file → Normal file
5
install/rhel/6/templates/web/httpd/basedir.stpl
Executable file → Normal file
|
@ -15,7 +15,10 @@
|
||||||
AllowOverride All
|
AllowOverride All
|
||||||
SSLRequireSSL
|
SSLRequireSSL
|
||||||
Options +Includes -Indexes +ExecCGI
|
Options +Includes -Indexes +ExecCGI
|
||||||
php_admin_value open_basedir %docroot%
|
php_admin_value open_basedir %docroot%:%home%/%user%/tmp
|
||||||
|
php_admin_value upload_tmp_dir %home%/%user%/tmp
|
||||||
|
php_admin_value session.save_path %home%/%user%/tmp
|
||||||
|
php_admin_value sendmail_path "/usr/sbin/sendmail -t -i -f info@%domain%"
|
||||||
</Directory>
|
</Directory>
|
||||||
<Directory %home%/%user%/web/%domain%/stats>
|
<Directory %home%/%user%/web/%domain%/stats>
|
||||||
AllowOverride All
|
AllowOverride All
|
||||||
|
|
5
install/rhel/6/templates/web/httpd/basedir.tpl
Executable file → Normal file
5
install/rhel/6/templates/web/httpd/basedir.tpl
Executable file → Normal file
|
@ -14,7 +14,10 @@
|
||||||
<Directory %docroot%>
|
<Directory %docroot%>
|
||||||
AllowOverride All
|
AllowOverride All
|
||||||
Options +Includes -Indexes +ExecCGI
|
Options +Includes -Indexes +ExecCGI
|
||||||
php_admin_value open_basedir %docroot%
|
php_admin_value open_basedir %docroot%:%home%/%user%/tmp
|
||||||
|
php_admin_value upload_tmp_dir %home%/%user%/tmp
|
||||||
|
php_admin_value session.save_path %home%/%user%/tmp
|
||||||
|
php_admin_value sendmail_path "/usr/sbin/sendmail -t -i -f info@%domain%"
|
||||||
</Directory>
|
</Directory>
|
||||||
<Directory %home%/%user%/web/%domain%/stats>
|
<Directory %home%/%user%/web/%domain%/stats>
|
||||||
AllowOverride All
|
AllowOverride All
|
||||||
|
|
3
install/rhel/6/templates/web/httpd/default.stpl
Executable file → Normal file
3
install/rhel/6/templates/web/httpd/default.stpl
Executable file → Normal file
|
@ -15,6 +15,9 @@
|
||||||
AllowOverride All
|
AllowOverride All
|
||||||
SSLRequireSSL
|
SSLRequireSSL
|
||||||
Options +Includes -Indexes +ExecCGI
|
Options +Includes -Indexes +ExecCGI
|
||||||
|
php_admin_value open_basedir %docroot%:%home%/%user%/tmp
|
||||||
|
php_admin_value upload_tmp_dir %home%/%user%/tmp
|
||||||
|
php_admin_value session.save_path %home%/%user%/tmp
|
||||||
</Directory>
|
</Directory>
|
||||||
<Directory %home%/%user%/web/%domain%/stats>
|
<Directory %home%/%user%/web/%domain%/stats>
|
||||||
AllowOverride All
|
AllowOverride All
|
||||||
|
|
3
install/rhel/6/templates/web/httpd/default.tpl
Executable file → Normal file
3
install/rhel/6/templates/web/httpd/default.tpl
Executable file → Normal file
|
@ -14,6 +14,9 @@
|
||||||
<Directory %docroot%>
|
<Directory %docroot%>
|
||||||
AllowOverride All
|
AllowOverride All
|
||||||
Options +Includes -Indexes +ExecCGI
|
Options +Includes -Indexes +ExecCGI
|
||||||
|
php_admin_value open_basedir %docroot%:%home%/%user%/tmp
|
||||||
|
php_admin_value upload_tmp_dir %home%/%user%/tmp
|
||||||
|
php_admin_value session.save_path %home%/%user%/tmp
|
||||||
</Directory>
|
</Directory>
|
||||||
<Directory %home%/%user%/web/%domain%/stats>
|
<Directory %home%/%user%/web/%domain%/stats>
|
||||||
AllowOverride All
|
AllowOverride All
|
||||||
|
|
5
install/rhel/6/templates/web/httpd/hosting.stpl
Executable file → Normal file
5
install/rhel/6/templates/web/httpd/hosting.stpl
Executable file → Normal file
|
@ -15,15 +15,16 @@
|
||||||
AllowOverride All
|
AllowOverride All
|
||||||
SSLRequireSSL
|
SSLRequireSSL
|
||||||
Options +Includes -Indexes +ExecCGI
|
Options +Includes -Indexes +ExecCGI
|
||||||
php_admin_value upload_tmp_dir %home%/%user%/tmp
|
|
||||||
php_admin_value upload_max_filesize 10M
|
php_admin_value upload_max_filesize 10M
|
||||||
php_admin_value max_execution_time 20
|
php_admin_value max_execution_time 20
|
||||||
php_admin_value post_max_size 8M
|
php_admin_value post_max_size 8M
|
||||||
php_admin_value memory_limit 32M
|
php_admin_value memory_limit 32M
|
||||||
php_admin_flag mysql.allow_persistent off
|
php_admin_flag mysql.allow_persistent off
|
||||||
php_admin_flag safe_mode off
|
php_admin_flag safe_mode off
|
||||||
|
php_admin_value sendmail_path "/usr/sbin/sendmail -t -i -f info@%domain%"
|
||||||
|
php_admin_value open_basedir %docroot%:%home%/%user%/tmp:/bin:/usr/bin:/usr/local/bin:/var/www/html:/tmp:/usr/share:/etc/phpMyAdmin:/etc/phpmyadmin:/var/lib/phpmyadmin:/etc/roundcubemail:/etc/roundcube:/var/lib/roundcube
|
||||||
|
php_admin_value upload_tmp_dir %home%/%user%/tmp
|
||||||
php_admin_value session.save_path %home%/%user%/tmp
|
php_admin_value session.save_path %home%/%user%/tmp
|
||||||
php_admin_value sendmail_path '/usr/sbin/sendmail -t -i -f %email%'
|
|
||||||
</Directory>
|
</Directory>
|
||||||
<Directory %home%/%user%/web/%domain%/stats>
|
<Directory %home%/%user%/web/%domain%/stats>
|
||||||
AllowOverride All
|
AllowOverride All
|
||||||
|
|
5
install/rhel/6/templates/web/httpd/hosting.tpl
Executable file → Normal file
5
install/rhel/6/templates/web/httpd/hosting.tpl
Executable file → Normal file
|
@ -14,15 +14,16 @@
|
||||||
<Directory %docroot%>
|
<Directory %docroot%>
|
||||||
AllowOverride All
|
AllowOverride All
|
||||||
Options +Includes -Indexes +ExecCGI
|
Options +Includes -Indexes +ExecCGI
|
||||||
php_admin_value upload_tmp_dir %home%/%user%/tmp
|
|
||||||
php_admin_value upload_max_filesize 10M
|
php_admin_value upload_max_filesize 10M
|
||||||
php_admin_value max_execution_time 20
|
php_admin_value max_execution_time 20
|
||||||
php_admin_value post_max_size 8M
|
php_admin_value post_max_size 8M
|
||||||
php_admin_value memory_limit 32M
|
php_admin_value memory_limit 32M
|
||||||
php_admin_flag mysql.allow_persistent off
|
php_admin_flag mysql.allow_persistent off
|
||||||
php_admin_flag safe_mode off
|
php_admin_flag safe_mode off
|
||||||
|
php_admin_value sendmail_path "/usr/sbin/sendmail -t -i -f info@%domain%"
|
||||||
|
php_admin_value open_basedir %docroot%:%home%/%user%/tmp:/bin:/usr/bin:/usr/local/bin:/var/www/html:/tmp:/usr/share:/etc/phpMyAdmin:/etc/phpmyadmin:/var/lib/phpmyadmin:/etc/roundcubemail:/etc/roundcube:/var/lib/roundcube
|
||||||
|
php_admin_value upload_tmp_dir %home%/%user%/tmp
|
||||||
php_admin_value session.save_path %home%/%user%/tmp
|
php_admin_value session.save_path %home%/%user%/tmp
|
||||||
php_admin_value sendmail_path '/usr/sbin/sendmail -t -i -f %email%'
|
|
||||||
</Directory>
|
</Directory>
|
||||||
<Directory %home%/%user%/web/%domain%/stats>
|
<Directory %home%/%user%/web/%domain%/stats>
|
||||||
AllowOverride All
|
AllowOverride All
|
||||||
|
|
3
install/rhel/6/templates/web/httpd/phpcgi.stpl
Executable file → Normal file
3
install/rhel/6/templates/web/httpd/phpcgi.stpl
Executable file → Normal file
|
@ -15,6 +15,9 @@
|
||||||
SSLRequireSSL
|
SSLRequireSSL
|
||||||
AllowOverride All
|
AllowOverride All
|
||||||
Options +Includes -Indexes +ExecCGI
|
Options +Includes -Indexes +ExecCGI
|
||||||
|
php_admin_value open_basedir %docroot%:%home%/%user%/tmp
|
||||||
|
php_admin_value upload_tmp_dir %home%/%user%/tmp
|
||||||
|
php_admin_value session.save_path %home%/%user%/tmp
|
||||||
Action phpcgi-script /cgi-bin/php
|
Action phpcgi-script /cgi-bin/php
|
||||||
<Files *.php>
|
<Files *.php>
|
||||||
SetHandler phpcgi-script
|
SetHandler phpcgi-script
|
||||||
|
|
3
install/rhel/6/templates/web/httpd/phpcgi.tpl
Executable file → Normal file
3
install/rhel/6/templates/web/httpd/phpcgi.tpl
Executable file → Normal file
|
@ -14,6 +14,9 @@
|
||||||
<Directory %docroot%>
|
<Directory %docroot%>
|
||||||
AllowOverride All
|
AllowOverride All
|
||||||
Options +Includes -Indexes +ExecCGI
|
Options +Includes -Indexes +ExecCGI
|
||||||
|
php_admin_value open_basedir %docroot%:%home%/%user%/tmp
|
||||||
|
php_admin_value upload_tmp_dir %home%/%user%/tmp
|
||||||
|
php_admin_value session.save_path %home%/%user%/tmp
|
||||||
Action phpcgi-script /cgi-bin/php
|
Action phpcgi-script /cgi-bin/php
|
||||||
<Files *.php>
|
<Files *.php>
|
||||||
SetHandler phpcgi-script
|
SetHandler phpcgi-script
|
||||||
|
|
3
install/rhel/6/templates/web/httpd/phpfcgid.stpl
Executable file → Normal file
3
install/rhel/6/templates/web/httpd/phpfcgid.stpl
Executable file → Normal file
|
@ -15,6 +15,9 @@
|
||||||
SSLRequireSSL
|
SSLRequireSSL
|
||||||
AllowOverride All
|
AllowOverride All
|
||||||
Options +Includes -Indexes +ExecCGI
|
Options +Includes -Indexes +ExecCGI
|
||||||
|
php_admin_value open_basedir %docroot%:%home%/%user%/tmp
|
||||||
|
php_admin_value upload_tmp_dir %home%/%user%/tmp
|
||||||
|
php_admin_value session.save_path %home%/%user%/tmp
|
||||||
<Files *.php>
|
<Files *.php>
|
||||||
SetHandler fcgid-script
|
SetHandler fcgid-script
|
||||||
</Files>
|
</Files>
|
||||||
|
|
3
install/rhel/6/templates/web/httpd/phpfcgid.tpl
Executable file → Normal file
3
install/rhel/6/templates/web/httpd/phpfcgid.tpl
Executable file → Normal file
|
@ -14,6 +14,9 @@
|
||||||
<Directory %docroot%>
|
<Directory %docroot%>
|
||||||
AllowOverride All
|
AllowOverride All
|
||||||
Options +Includes -Indexes +ExecCGI
|
Options +Includes -Indexes +ExecCGI
|
||||||
|
php_admin_value open_basedir %docroot%:%home%/%user%/tmp
|
||||||
|
php_admin_value upload_tmp_dir %home%/%user%/tmp
|
||||||
|
php_admin_value session.save_path %home%/%user%/tmp
|
||||||
<Files *.php>
|
<Files *.php>
|
||||||
SetHandler fcgid-script
|
SetHandler fcgid-script
|
||||||
</Files>
|
</Files>
|
||||||
|
|
5
install/rhel/7/templates/web/httpd/basedir.stpl
Executable file → Normal file
5
install/rhel/7/templates/web/httpd/basedir.stpl
Executable file → Normal file
|
@ -15,7 +15,10 @@
|
||||||
AllowOverride All
|
AllowOverride All
|
||||||
SSLRequireSSL
|
SSLRequireSSL
|
||||||
Options +Includes -Indexes +ExecCGI
|
Options +Includes -Indexes +ExecCGI
|
||||||
php_admin_value open_basedir %docroot%
|
php_admin_value open_basedir %docroot%:%home%/%user%/tmp
|
||||||
|
php_admin_value upload_tmp_dir %home%/%user%/tmp
|
||||||
|
php_admin_value session.save_path %home%/%user%/tmp
|
||||||
|
php_admin_value sendmail_path "/usr/sbin/sendmail -t -i -f info@%domain%"
|
||||||
</Directory>
|
</Directory>
|
||||||
<Directory %home%/%user%/web/%domain%/stats>
|
<Directory %home%/%user%/web/%domain%/stats>
|
||||||
AllowOverride All
|
AllowOverride All
|
||||||
|
|
5
install/rhel/7/templates/web/httpd/basedir.tpl
Executable file → Normal file
5
install/rhel/7/templates/web/httpd/basedir.tpl
Executable file → Normal file
|
@ -14,7 +14,10 @@
|
||||||
<Directory %docroot%>
|
<Directory %docroot%>
|
||||||
AllowOverride All
|
AllowOverride All
|
||||||
Options +Includes -Indexes +ExecCGI
|
Options +Includes -Indexes +ExecCGI
|
||||||
php_admin_value open_basedir %docroot%
|
php_admin_value open_basedir %docroot%:%home%/%user%/tmp
|
||||||
|
php_admin_value upload_tmp_dir %home%/%user%/tmp
|
||||||
|
php_admin_value session.save_path %home%/%user%/tmp
|
||||||
|
php_admin_value sendmail_path "/usr/sbin/sendmail -t -i -f info@%domain%"
|
||||||
</Directory>
|
</Directory>
|
||||||
<Directory %home%/%user%/web/%domain%/stats>
|
<Directory %home%/%user%/web/%domain%/stats>
|
||||||
AllowOverride All
|
AllowOverride All
|
||||||
|
|
3
install/rhel/7/templates/web/httpd/default.stpl
Executable file → Normal file
3
install/rhel/7/templates/web/httpd/default.stpl
Executable file → Normal file
|
@ -15,6 +15,9 @@
|
||||||
AllowOverride All
|
AllowOverride All
|
||||||
SSLRequireSSL
|
SSLRequireSSL
|
||||||
Options +Includes -Indexes +ExecCGI
|
Options +Includes -Indexes +ExecCGI
|
||||||
|
php_admin_value open_basedir %docroot%:%home%/%user%/tmp
|
||||||
|
php_admin_value upload_tmp_dir %home%/%user%/tmp
|
||||||
|
php_admin_value session.save_path %home%/%user%/tmp
|
||||||
</Directory>
|
</Directory>
|
||||||
<Directory %home%/%user%/web/%domain%/stats>
|
<Directory %home%/%user%/web/%domain%/stats>
|
||||||
AllowOverride All
|
AllowOverride All
|
||||||
|
|
3
install/rhel/7/templates/web/httpd/default.tpl
Executable file → Normal file
3
install/rhel/7/templates/web/httpd/default.tpl
Executable file → Normal file
|
@ -14,6 +14,9 @@
|
||||||
<Directory %docroot%>
|
<Directory %docroot%>
|
||||||
AllowOverride All
|
AllowOverride All
|
||||||
Options +Includes -Indexes +ExecCGI
|
Options +Includes -Indexes +ExecCGI
|
||||||
|
php_admin_value open_basedir %docroot%:%home%/%user%/tmp
|
||||||
|
php_admin_value upload_tmp_dir %home%/%user%/tmp
|
||||||
|
php_admin_value session.save_path %home%/%user%/tmp
|
||||||
</Directory>
|
</Directory>
|
||||||
<Directory %home%/%user%/web/%domain%/stats>
|
<Directory %home%/%user%/web/%domain%/stats>
|
||||||
AllowOverride All
|
AllowOverride All
|
||||||
|
|
6
install/rhel/7/templates/web/httpd/hosting.stpl
Executable file → Normal file
6
install/rhel/7/templates/web/httpd/hosting.stpl
Executable file → Normal file
|
@ -15,20 +15,20 @@
|
||||||
AllowOverride All
|
AllowOverride All
|
||||||
SSLRequireSSL
|
SSLRequireSSL
|
||||||
Options +Includes -Indexes +ExecCGI
|
Options +Includes -Indexes +ExecCGI
|
||||||
php_admin_value upload_tmp_dir %home%/%user%/tmp
|
|
||||||
php_admin_value upload_max_filesize 10M
|
php_admin_value upload_max_filesize 10M
|
||||||
php_admin_value max_execution_time 20
|
php_admin_value max_execution_time 20
|
||||||
php_admin_value post_max_size 8M
|
php_admin_value post_max_size 8M
|
||||||
php_admin_value memory_limit 32M
|
php_admin_value memory_limit 32M
|
||||||
php_admin_flag mysql.allow_persistent off
|
php_admin_flag mysql.allow_persistent off
|
||||||
php_admin_flag safe_mode off
|
php_admin_flag safe_mode off
|
||||||
|
php_admin_value sendmail_path "/usr/sbin/sendmail -t -i -f info@%domain%"
|
||||||
|
php_admin_value open_basedir %docroot%:%home%/%user%/tmp:/bin:/usr/bin:/usr/local/bin:/var/www/html:/tmp:/usr/share:/etc/phpMyAdmin:/etc/phpmyadmin:/var/lib/phpmyadmin:/etc/roundcubemail:/etc/roundcube:/var/lib/roundcube
|
||||||
|
php_admin_value upload_tmp_dir %home%/%user%/tmp
|
||||||
php_admin_value session.save_path %home%/%user%/tmp
|
php_admin_value session.save_path %home%/%user%/tmp
|
||||||
php_admin_value sendmail_path '/usr/sbin/sendmail -t -i -f %email%'
|
|
||||||
</Directory>
|
</Directory>
|
||||||
<Directory %home%/%user%/web/%domain%/stats>
|
<Directory %home%/%user%/web/%domain%/stats>
|
||||||
AllowOverride All
|
AllowOverride All
|
||||||
</Directory>
|
</Directory>
|
||||||
php_admin_value open_basedir %home%/%user%/web:%home%/%user%/tmp:/bin:/usr/bin:/usr/local/bin:/var/www/html:/tmp:/usr/share:/etc/phpMyAdmin:/etc/phpmyadmin:/etc/roundcubemail:/etc/roundcube:/var/lib/roundcube
|
|
||||||
SSLEngine on
|
SSLEngine on
|
||||||
SSLVerifyClient none
|
SSLVerifyClient none
|
||||||
SSLCertificateFile %ssl_crt%
|
SSLCertificateFile %ssl_crt%
|
||||||
|
|
5
install/rhel/7/templates/web/httpd/hosting.tpl
Executable file → Normal file
5
install/rhel/7/templates/web/httpd/hosting.tpl
Executable file → Normal file
|
@ -14,15 +14,16 @@
|
||||||
<Directory %docroot%>
|
<Directory %docroot%>
|
||||||
AllowOverride All
|
AllowOverride All
|
||||||
Options +Includes -Indexes +ExecCGI
|
Options +Includes -Indexes +ExecCGI
|
||||||
php_admin_value upload_tmp_dir %home%/%user%/tmp
|
|
||||||
php_admin_value upload_max_filesize 10M
|
php_admin_value upload_max_filesize 10M
|
||||||
php_admin_value max_execution_time 20
|
php_admin_value max_execution_time 20
|
||||||
php_admin_value post_max_size 8M
|
php_admin_value post_max_size 8M
|
||||||
php_admin_value memory_limit 32M
|
php_admin_value memory_limit 32M
|
||||||
php_admin_flag mysql.allow_persistent off
|
php_admin_flag mysql.allow_persistent off
|
||||||
php_admin_flag safe_mode off
|
php_admin_flag safe_mode off
|
||||||
|
php_admin_value sendmail_path "/usr/sbin/sendmail -t -i -f info@%domain%"
|
||||||
|
php_admin_value open_basedir %docroot%:%home%/%user%/tmp:/bin:/usr/bin:/usr/local/bin:/var/www/html:/tmp:/usr/share:/etc/phpMyAdmin:/etc/phpmyadmin:/var/lib/phpmyadmin:/etc/roundcubemail:/etc/roundcube:/var/lib/roundcube
|
||||||
|
php_admin_value upload_tmp_dir %home%/%user%/tmp
|
||||||
php_admin_value session.save_path %home%/%user%/tmp
|
php_admin_value session.save_path %home%/%user%/tmp
|
||||||
php_admin_value sendmail_path '/usr/sbin/sendmail -t -i -f %email%'
|
|
||||||
</Directory>
|
</Directory>
|
||||||
<Directory %home%/%user%/web/%domain%/stats>
|
<Directory %home%/%user%/web/%domain%/stats>
|
||||||
AllowOverride All
|
AllowOverride All
|
||||||
|
|
3
install/rhel/7/templates/web/httpd/phpcgi.stpl
Executable file → Normal file
3
install/rhel/7/templates/web/httpd/phpcgi.stpl
Executable file → Normal file
|
@ -15,6 +15,9 @@
|
||||||
SSLRequireSSL
|
SSLRequireSSL
|
||||||
AllowOverride All
|
AllowOverride All
|
||||||
Options +Includes -Indexes +ExecCGI
|
Options +Includes -Indexes +ExecCGI
|
||||||
|
php_admin_value open_basedir %docroot%:%home%/%user%/tmp
|
||||||
|
php_admin_value upload_tmp_dir %home%/%user%/tmp
|
||||||
|
php_admin_value session.save_path %home%/%user%/tmp
|
||||||
Action phpcgi-script /cgi-bin/php
|
Action phpcgi-script /cgi-bin/php
|
||||||
<Files *.php>
|
<Files *.php>
|
||||||
SetHandler phpcgi-script
|
SetHandler phpcgi-script
|
||||||
|
|
3
install/rhel/7/templates/web/httpd/phpcgi.tpl
Executable file → Normal file
3
install/rhel/7/templates/web/httpd/phpcgi.tpl
Executable file → Normal file
|
@ -14,6 +14,9 @@
|
||||||
<Directory %docroot%>
|
<Directory %docroot%>
|
||||||
AllowOverride All
|
AllowOverride All
|
||||||
Options +Includes -Indexes +ExecCGI
|
Options +Includes -Indexes +ExecCGI
|
||||||
|
php_admin_value open_basedir %docroot%:%home%/%user%/tmp
|
||||||
|
php_admin_value upload_tmp_dir %home%/%user%/tmp
|
||||||
|
php_admin_value session.save_path %home%/%user%/tmp
|
||||||
Action phpcgi-script /cgi-bin/php
|
Action phpcgi-script /cgi-bin/php
|
||||||
<Files *.php>
|
<Files *.php>
|
||||||
SetHandler phpcgi-script
|
SetHandler phpcgi-script
|
||||||
|
|
3
install/rhel/7/templates/web/httpd/phpfcgid.stpl
Executable file → Normal file
3
install/rhel/7/templates/web/httpd/phpfcgid.stpl
Executable file → Normal file
|
@ -15,6 +15,9 @@
|
||||||
SSLRequireSSL
|
SSLRequireSSL
|
||||||
AllowOverride All
|
AllowOverride All
|
||||||
Options +Includes -Indexes +ExecCGI
|
Options +Includes -Indexes +ExecCGI
|
||||||
|
php_admin_value open_basedir %docroot%:%home%/%user%/tmp
|
||||||
|
php_admin_value upload_tmp_dir %home%/%user%/tmp
|
||||||
|
php_admin_value session.save_path %home%/%user%/tmp
|
||||||
<Files *.php>
|
<Files *.php>
|
||||||
SetHandler fcgid-script
|
SetHandler fcgid-script
|
||||||
</Files>
|
</Files>
|
||||||
|
|
3
install/rhel/7/templates/web/httpd/phpfcgid.tpl
Executable file → Normal file
3
install/rhel/7/templates/web/httpd/phpfcgid.tpl
Executable file → Normal file
|
@ -14,6 +14,9 @@
|
||||||
<Directory %docroot%>
|
<Directory %docroot%>
|
||||||
AllowOverride All
|
AllowOverride All
|
||||||
Options +Includes -Indexes +ExecCGI
|
Options +Includes -Indexes +ExecCGI
|
||||||
|
php_admin_value open_basedir %docroot%:%home%/%user%/tmp
|
||||||
|
php_admin_value upload_tmp_dir %home%/%user%/tmp
|
||||||
|
php_admin_value session.save_path %home%/%user%/tmp
|
||||||
<Files *.php>
|
<Files *.php>
|
||||||
SetHandler fcgid-script
|
SetHandler fcgid-script
|
||||||
</Files>
|
</Files>
|
||||||
|
|
5
install/ubuntu/12.04/templates/web/apache2/basedir.stpl
Executable file → Normal file
5
install/ubuntu/12.04/templates/web/apache2/basedir.stpl
Executable file → Normal file
|
@ -15,7 +15,10 @@
|
||||||
AllowOverride All
|
AllowOverride All
|
||||||
SSLRequireSSL
|
SSLRequireSSL
|
||||||
Options +Includes -Indexes +ExecCGI
|
Options +Includes -Indexes +ExecCGI
|
||||||
php_admin_value open_basedir %docroot%
|
php_admin_value open_basedir %docroot%:%home%/%user%/tmp
|
||||||
|
php_admin_value upload_tmp_dir %home%/%user%/tmp
|
||||||
|
php_admin_value session.save_path %home%/%user%/tmp
|
||||||
|
php_admin_value sendmail_path "/usr/sbin/sendmail -t -i -f info@%domain%"
|
||||||
</Directory>
|
</Directory>
|
||||||
<Directory %home%/%user%/web/%domain%/stats>
|
<Directory %home%/%user%/web/%domain%/stats>
|
||||||
AllowOverride All
|
AllowOverride All
|
||||||
|
|
5
install/ubuntu/12.04/templates/web/apache2/basedir.tpl
Executable file → Normal file
5
install/ubuntu/12.04/templates/web/apache2/basedir.tpl
Executable file → Normal file
|
@ -14,7 +14,10 @@
|
||||||
<Directory %docroot%>
|
<Directory %docroot%>
|
||||||
AllowOverride All
|
AllowOverride All
|
||||||
Options +Includes -Indexes +ExecCGI
|
Options +Includes -Indexes +ExecCGI
|
||||||
php_admin_value open_basedir %docroot%
|
php_admin_value open_basedir %docroot%:%home%/%user%/tmp
|
||||||
|
php_admin_value upload_tmp_dir %home%/%user%/tmp
|
||||||
|
php_admin_value session.save_path %home%/%user%/tmp
|
||||||
|
php_admin_value sendmail_path "/usr/sbin/sendmail -t -i -f info@%domain%"
|
||||||
</Directory>
|
</Directory>
|
||||||
<Directory %home%/%user%/web/%domain%/stats>
|
<Directory %home%/%user%/web/%domain%/stats>
|
||||||
AllowOverride All
|
AllowOverride All
|
||||||
|
|
3
install/ubuntu/12.04/templates/web/apache2/default.stpl
Executable file → Normal file
3
install/ubuntu/12.04/templates/web/apache2/default.stpl
Executable file → Normal file
|
@ -15,6 +15,9 @@
|
||||||
AllowOverride All
|
AllowOverride All
|
||||||
SSLRequireSSL
|
SSLRequireSSL
|
||||||
Options +Includes -Indexes +ExecCGI
|
Options +Includes -Indexes +ExecCGI
|
||||||
|
php_admin_value open_basedir %docroot%:%home%/%user%/tmp
|
||||||
|
php_admin_value upload_tmp_dir %home%/%user%/tmp
|
||||||
|
php_admin_value session.save_path %home%/%user%/tmp
|
||||||
</Directory>
|
</Directory>
|
||||||
<Directory %home%/%user%/web/%domain%/stats>
|
<Directory %home%/%user%/web/%domain%/stats>
|
||||||
AllowOverride All
|
AllowOverride All
|
||||||
|
|
3
install/ubuntu/12.04/templates/web/apache2/default.tpl
Executable file → Normal file
3
install/ubuntu/12.04/templates/web/apache2/default.tpl
Executable file → Normal file
|
@ -14,6 +14,9 @@
|
||||||
<Directory %docroot%>
|
<Directory %docroot%>
|
||||||
AllowOverride All
|
AllowOverride All
|
||||||
Options +Includes -Indexes +ExecCGI
|
Options +Includes -Indexes +ExecCGI
|
||||||
|
php_admin_value open_basedir %docroot%:%home%/%user%/tmp
|
||||||
|
php_admin_value upload_tmp_dir %home%/%user%/tmp
|
||||||
|
php_admin_value session.save_path %home%/%user%/tmp
|
||||||
</Directory>
|
</Directory>
|
||||||
<Directory %home%/%user%/web/%domain%/stats>
|
<Directory %home%/%user%/web/%domain%/stats>
|
||||||
AllowOverride All
|
AllowOverride All
|
||||||
|
|
6
install/ubuntu/12.04/templates/web/apache2/hosting.stpl
Executable file → Normal file
6
install/ubuntu/12.04/templates/web/apache2/hosting.stpl
Executable file → Normal file
|
@ -15,20 +15,20 @@
|
||||||
AllowOverride All
|
AllowOverride All
|
||||||
SSLRequireSSL
|
SSLRequireSSL
|
||||||
Options +Includes -Indexes +ExecCGI
|
Options +Includes -Indexes +ExecCGI
|
||||||
php_admin_value upload_tmp_dir %home%/%user%/tmp
|
|
||||||
php_admin_value upload_max_filesize 10M
|
php_admin_value upload_max_filesize 10M
|
||||||
php_admin_value max_execution_time 20
|
php_admin_value max_execution_time 20
|
||||||
php_admin_value post_max_size 8M
|
php_admin_value post_max_size 8M
|
||||||
php_admin_value memory_limit 32M
|
php_admin_value memory_limit 32M
|
||||||
php_admin_flag mysql.allow_persistent off
|
php_admin_flag mysql.allow_persistent off
|
||||||
php_admin_flag safe_mode off
|
php_admin_flag safe_mode off
|
||||||
|
php_admin_value sendmail_path "/usr/sbin/sendmail -t -i -f info@%domain%"
|
||||||
|
php_admin_value open_basedir %docroot%:%home%/%user%/tmp:/bin:/usr/bin:/usr/local/bin:/var/www/html:/tmp:/usr/share:/etc/phpMyAdmin:/etc/phpmyadmin:/var/lib/phpmyadmin:/etc/roundcubemail:/etc/roundcube:/var/lib/roundcube
|
||||||
|
php_admin_value upload_tmp_dir %home%/%user%/tmp
|
||||||
php_admin_value session.save_path %home%/%user%/tmp
|
php_admin_value session.save_path %home%/%user%/tmp
|
||||||
php_admin_value sendmail_path '/usr/sbin/sendmail -t -i -f %email%'
|
|
||||||
</Directory>
|
</Directory>
|
||||||
<Directory %home%/%user%/web/%domain%/stats>
|
<Directory %home%/%user%/web/%domain%/stats>
|
||||||
AllowOverride All
|
AllowOverride All
|
||||||
</Directory>
|
</Directory>
|
||||||
php_admin_value open_basedir %home%/%user%/web:%home%/%user%/tmp:/bin:/usr/bin:/usr/local/bin:/var/www/html:/tmp:/usr/share:/etc/phpMyAdmin:/etc/phpmyadmin:/var/lib/phpmyadmin:/etc/roundcubemail:/etc/roundcube:/var/lib/roundcube
|
|
||||||
SSLEngine on
|
SSLEngine on
|
||||||
SSLVerifyClient none
|
SSLVerifyClient none
|
||||||
SSLCertificateFile %ssl_crt%
|
SSLCertificateFile %ssl_crt%
|
||||||
|
|
6
install/ubuntu/12.04/templates/web/apache2/hosting.tpl
Executable file → Normal file
6
install/ubuntu/12.04/templates/web/apache2/hosting.tpl
Executable file → Normal file
|
@ -14,20 +14,20 @@
|
||||||
<Directory %docroot%>
|
<Directory %docroot%>
|
||||||
AllowOverride All
|
AllowOverride All
|
||||||
Options +Includes -Indexes +ExecCGI
|
Options +Includes -Indexes +ExecCGI
|
||||||
php_admin_value upload_tmp_dir %home%/%user%/tmp
|
|
||||||
php_admin_value upload_max_filesize 10M
|
php_admin_value upload_max_filesize 10M
|
||||||
php_admin_value max_execution_time 20
|
php_admin_value max_execution_time 20
|
||||||
php_admin_value post_max_size 8M
|
php_admin_value post_max_size 8M
|
||||||
php_admin_value memory_limit 32M
|
php_admin_value memory_limit 32M
|
||||||
php_admin_flag mysql.allow_persistent off
|
php_admin_flag mysql.allow_persistent off
|
||||||
php_admin_flag safe_mode off
|
php_admin_flag safe_mode off
|
||||||
|
php_admin_value sendmail_path "/usr/sbin/sendmail -t -i -f info@%domain%"
|
||||||
|
php_admin_value open_basedir %docroot%:%home%/%user%/tmp:/bin:/usr/bin:/usr/local/bin:/var/www/html:/tmp:/usr/share:/etc/phpMyAdmin:/etc/phpmyadmin:/var/lib/phpmyadmin:/etc/roundcubemail:/etc/roundcube:/var/lib/roundcube
|
||||||
|
php_admin_value upload_tmp_dir %home%/%user%/tmp
|
||||||
php_admin_value session.save_path %home%/%user%/tmp
|
php_admin_value session.save_path %home%/%user%/tmp
|
||||||
php_admin_value sendmail_path '/usr/sbin/sendmail -t -i -f %email%'
|
|
||||||
</Directory>
|
</Directory>
|
||||||
<Directory %home%/%user%/web/%domain%/stats>
|
<Directory %home%/%user%/web/%domain%/stats>
|
||||||
AllowOverride All
|
AllowOverride All
|
||||||
</Directory>
|
</Directory>
|
||||||
php_admin_value open_basedir %home%/%user%/web:%home%/%user%/tmp:/bin:/usr/bin:/usr/local/bin:/var/www/html:/tmp:/usr/share:/etc/phpMyAdmin:/etc/phpmyadmin:/var/lib/phpmyadmin:/etc/roundcubemail:/etc/roundcube:/var/lib/roundcube
|
|
||||||
<IfModule mod_ruid2.c>
|
<IfModule mod_ruid2.c>
|
||||||
RMode config
|
RMode config
|
||||||
RUidGid %user% %group%
|
RUidGid %user% %group%
|
||||||
|
|
3
install/ubuntu/12.04/templates/web/apache2/phpcgi.stpl
Executable file → Normal file
3
install/ubuntu/12.04/templates/web/apache2/phpcgi.stpl
Executable file → Normal file
|
@ -15,6 +15,9 @@
|
||||||
SSLRequireSSL
|
SSLRequireSSL
|
||||||
AllowOverride All
|
AllowOverride All
|
||||||
Options +Includes -Indexes +ExecCGI
|
Options +Includes -Indexes +ExecCGI
|
||||||
|
php_admin_value open_basedir %docroot%:%home%/%user%/tmp
|
||||||
|
php_admin_value upload_tmp_dir %home%/%user%/tmp
|
||||||
|
php_admin_value session.save_path %home%/%user%/tmp
|
||||||
Action phpcgi-script /cgi-bin/php
|
Action phpcgi-script /cgi-bin/php
|
||||||
<Files *.php>
|
<Files *.php>
|
||||||
SetHandler phpcgi-script
|
SetHandler phpcgi-script
|
||||||
|
|
3
install/ubuntu/12.04/templates/web/apache2/phpcgi.tpl
Executable file → Normal file
3
install/ubuntu/12.04/templates/web/apache2/phpcgi.tpl
Executable file → Normal file
|
@ -14,6 +14,9 @@
|
||||||
<Directory %docroot%>
|
<Directory %docroot%>
|
||||||
AllowOverride All
|
AllowOverride All
|
||||||
Options +Includes -Indexes +ExecCGI
|
Options +Includes -Indexes +ExecCGI
|
||||||
|
php_admin_value open_basedir %docroot%:%home%/%user%/tmp
|
||||||
|
php_admin_value upload_tmp_dir %home%/%user%/tmp
|
||||||
|
php_admin_value session.save_path %home%/%user%/tmp
|
||||||
Action phpcgi-script /cgi-bin/php
|
Action phpcgi-script /cgi-bin/php
|
||||||
<Files *.php>
|
<Files *.php>
|
||||||
SetHandler phpcgi-script
|
SetHandler phpcgi-script
|
||||||
|
|
3
install/ubuntu/12.04/templates/web/apache2/phpfcgid.stpl
Executable file → Normal file
3
install/ubuntu/12.04/templates/web/apache2/phpfcgid.stpl
Executable file → Normal file
|
@ -15,6 +15,9 @@
|
||||||
SSLRequireSSL
|
SSLRequireSSL
|
||||||
AllowOverride All
|
AllowOverride All
|
||||||
Options +Includes -Indexes +ExecCGI
|
Options +Includes -Indexes +ExecCGI
|
||||||
|
php_admin_value open_basedir %docroot%:%home%/%user%/tmp
|
||||||
|
php_admin_value upload_tmp_dir %home%/%user%/tmp
|
||||||
|
php_admin_value session.save_path %home%/%user%/tmp
|
||||||
<Files *.php>
|
<Files *.php>
|
||||||
SetHandler fcgid-script
|
SetHandler fcgid-script
|
||||||
</Files>
|
</Files>
|
||||||
|
|
3
install/ubuntu/12.04/templates/web/apache2/phpfcgid.tpl
Executable file → Normal file
3
install/ubuntu/12.04/templates/web/apache2/phpfcgid.tpl
Executable file → Normal file
|
@ -14,6 +14,9 @@
|
||||||
<Directory %docroot%>
|
<Directory %docroot%>
|
||||||
AllowOverride All
|
AllowOverride All
|
||||||
Options +Includes -Indexes +ExecCGI
|
Options +Includes -Indexes +ExecCGI
|
||||||
|
php_admin_value open_basedir %docroot%:%home%/%user%/tmp
|
||||||
|
php_admin_value upload_tmp_dir %home%/%user%/tmp
|
||||||
|
php_admin_value session.save_path %home%/%user%/tmp
|
||||||
<Files *.php>
|
<Files *.php>
|
||||||
SetHandler fcgid-script
|
SetHandler fcgid-script
|
||||||
</Files>
|
</Files>
|
||||||
|
|
5
install/ubuntu/12.10/templates/web/apache2/basedir.stpl
Executable file → Normal file
5
install/ubuntu/12.10/templates/web/apache2/basedir.stpl
Executable file → Normal file
|
@ -15,7 +15,10 @@
|
||||||
AllowOverride All
|
AllowOverride All
|
||||||
SSLRequireSSL
|
SSLRequireSSL
|
||||||
Options +Includes -Indexes +ExecCGI
|
Options +Includes -Indexes +ExecCGI
|
||||||
php_admin_value open_basedir %docroot%
|
php_admin_value open_basedir %docroot%:%home%/%user%/tmp
|
||||||
|
php_admin_value upload_tmp_dir %home%/%user%/tmp
|
||||||
|
php_admin_value session.save_path %home%/%user%/tmp
|
||||||
|
php_admin_value sendmail_path "/usr/sbin/sendmail -t -i -f info@%domain%"
|
||||||
</Directory>
|
</Directory>
|
||||||
<Directory %home%/%user%/web/%domain%/stats>
|
<Directory %home%/%user%/web/%domain%/stats>
|
||||||
AllowOverride All
|
AllowOverride All
|
||||||
|
|
5
install/ubuntu/12.10/templates/web/apache2/basedir.tpl
Executable file → Normal file
5
install/ubuntu/12.10/templates/web/apache2/basedir.tpl
Executable file → Normal file
|
@ -14,7 +14,10 @@
|
||||||
<Directory %docroot%>
|
<Directory %docroot%>
|
||||||
AllowOverride All
|
AllowOverride All
|
||||||
Options +Includes -Indexes +ExecCGI
|
Options +Includes -Indexes +ExecCGI
|
||||||
php_admin_value open_basedir %docroot%
|
php_admin_value open_basedir %docroot%:%home%/%user%/tmp
|
||||||
|
php_admin_value upload_tmp_dir %home%/%user%/tmp
|
||||||
|
php_admin_value session.save_path %home%/%user%/tmp
|
||||||
|
php_admin_value sendmail_path "/usr/sbin/sendmail -t -i -f info@%domain%"
|
||||||
</Directory>
|
</Directory>
|
||||||
<Directory %home%/%user%/web/%domain%/stats>
|
<Directory %home%/%user%/web/%domain%/stats>
|
||||||
AllowOverride All
|
AllowOverride All
|
||||||
|
|
3
install/ubuntu/12.10/templates/web/apache2/default.stpl
Executable file → Normal file
3
install/ubuntu/12.10/templates/web/apache2/default.stpl
Executable file → Normal file
|
@ -15,6 +15,9 @@
|
||||||
AllowOverride All
|
AllowOverride All
|
||||||
SSLRequireSSL
|
SSLRequireSSL
|
||||||
Options +Includes -Indexes +ExecCGI
|
Options +Includes -Indexes +ExecCGI
|
||||||
|
php_admin_value open_basedir %docroot%:%home%/%user%/tmp
|
||||||
|
php_admin_value upload_tmp_dir %home%/%user%/tmp
|
||||||
|
php_admin_value session.save_path %home%/%user%/tmp
|
||||||
</Directory>
|
</Directory>
|
||||||
<Directory %home%/%user%/web/%domain%/stats>
|
<Directory %home%/%user%/web/%domain%/stats>
|
||||||
AllowOverride All
|
AllowOverride All
|
||||||
|
|
3
install/ubuntu/12.10/templates/web/apache2/default.tpl
Executable file → Normal file
3
install/ubuntu/12.10/templates/web/apache2/default.tpl
Executable file → Normal file
|
@ -14,6 +14,9 @@
|
||||||
<Directory %docroot%>
|
<Directory %docroot%>
|
||||||
AllowOverride All
|
AllowOverride All
|
||||||
Options +Includes -Indexes +ExecCGI
|
Options +Includes -Indexes +ExecCGI
|
||||||
|
php_admin_value open_basedir %docroot%:%home%/%user%/tmp
|
||||||
|
php_admin_value upload_tmp_dir %home%/%user%/tmp
|
||||||
|
php_admin_value session.save_path %home%/%user%/tmp
|
||||||
</Directory>
|
</Directory>
|
||||||
<Directory %home%/%user%/web/%domain%/stats>
|
<Directory %home%/%user%/web/%domain%/stats>
|
||||||
AllowOverride All
|
AllowOverride All
|
||||||
|
|
6
install/ubuntu/12.10/templates/web/apache2/hosting.stpl
Executable file → Normal file
6
install/ubuntu/12.10/templates/web/apache2/hosting.stpl
Executable file → Normal file
|
@ -15,20 +15,20 @@
|
||||||
AllowOverride All
|
AllowOverride All
|
||||||
SSLRequireSSL
|
SSLRequireSSL
|
||||||
Options +Includes -Indexes +ExecCGI
|
Options +Includes -Indexes +ExecCGI
|
||||||
php_admin_value upload_tmp_dir %home%/%user%/tmp
|
|
||||||
php_admin_value upload_max_filesize 10M
|
php_admin_value upload_max_filesize 10M
|
||||||
php_admin_value max_execution_time 20
|
php_admin_value max_execution_time 20
|
||||||
php_admin_value post_max_size 8M
|
php_admin_value post_max_size 8M
|
||||||
php_admin_value memory_limit 32M
|
php_admin_value memory_limit 32M
|
||||||
php_admin_flag mysql.allow_persistent off
|
php_admin_flag mysql.allow_persistent off
|
||||||
php_admin_flag safe_mode off
|
php_admin_flag safe_mode off
|
||||||
|
php_admin_value sendmail_path "/usr/sbin/sendmail -t -i -f info@%domain%"
|
||||||
|
php_admin_value open_basedir %docroot%:%home%/%user%/tmp:/bin:/usr/bin:/usr/local/bin:/var/www/html:/tmp:/usr/share:/etc/phpMyAdmin:/etc/phpmyadmin:/var/lib/phpmyadmin:/etc/roundcubemail:/etc/roundcube:/var/lib/roundcube
|
||||||
|
php_admin_value upload_tmp_dir %home%/%user%/tmp
|
||||||
php_admin_value session.save_path %home%/%user%/tmp
|
php_admin_value session.save_path %home%/%user%/tmp
|
||||||
php_admin_value sendmail_path '/usr/sbin/sendmail -t -i -f %email%'
|
|
||||||
</Directory>
|
</Directory>
|
||||||
<Directory %home%/%user%/web/%domain%/stats>
|
<Directory %home%/%user%/web/%domain%/stats>
|
||||||
AllowOverride All
|
AllowOverride All
|
||||||
</Directory>
|
</Directory>
|
||||||
php_admin_value open_basedir %home%/%user%/web:%home%/%user%/tmp:/bin:/usr/bin:/usr/local/bin:/var/www/html:/tmp:/usr/share:/etc/phpMyAdmin:/etc/phpmyadmin:/var/lib/phpmyadmin:/etc/roundcubemail:/etc/roundcube:/var/lib/roundcube
|
|
||||||
SSLEngine on
|
SSLEngine on
|
||||||
SSLVerifyClient none
|
SSLVerifyClient none
|
||||||
SSLCertificateFile %ssl_crt%
|
SSLCertificateFile %ssl_crt%
|
||||||
|
|
6
install/ubuntu/12.10/templates/web/apache2/hosting.tpl
Executable file → Normal file
6
install/ubuntu/12.10/templates/web/apache2/hosting.tpl
Executable file → Normal file
|
@ -14,20 +14,20 @@
|
||||||
<Directory %docroot%>
|
<Directory %docroot%>
|
||||||
AllowOverride All
|
AllowOverride All
|
||||||
Options +Includes -Indexes +ExecCGI
|
Options +Includes -Indexes +ExecCGI
|
||||||
php_admin_value upload_tmp_dir %home%/%user%/tmp
|
|
||||||
php_admin_value upload_max_filesize 10M
|
php_admin_value upload_max_filesize 10M
|
||||||
php_admin_value max_execution_time 20
|
php_admin_value max_execution_time 20
|
||||||
php_admin_value post_max_size 8M
|
php_admin_value post_max_size 8M
|
||||||
php_admin_value memory_limit 32M
|
php_admin_value memory_limit 32M
|
||||||
php_admin_flag mysql.allow_persistent off
|
php_admin_flag mysql.allow_persistent off
|
||||||
php_admin_flag safe_mode off
|
php_admin_flag safe_mode off
|
||||||
|
php_admin_value sendmail_path "/usr/sbin/sendmail -t -i -f info@%domain%"
|
||||||
|
php_admin_value open_basedir %docroot%:%home%/%user%/tmp:/bin:/usr/bin:/usr/local/bin:/var/www/html:/tmp:/usr/share:/etc/phpMyAdmin:/etc/phpmyadmin:/var/lib/phpmyadmin:/etc/roundcubemail:/etc/roundcube:/var/lib/roundcube
|
||||||
|
php_admin_value upload_tmp_dir %home%/%user%/tmp
|
||||||
php_admin_value session.save_path %home%/%user%/tmp
|
php_admin_value session.save_path %home%/%user%/tmp
|
||||||
php_admin_value sendmail_path '/usr/sbin/sendmail -t -i -f %email%'
|
|
||||||
</Directory>
|
</Directory>
|
||||||
<Directory %home%/%user%/web/%domain%/stats>
|
<Directory %home%/%user%/web/%domain%/stats>
|
||||||
AllowOverride All
|
AllowOverride All
|
||||||
</Directory>
|
</Directory>
|
||||||
php_admin_value open_basedir %home%/%user%/web:%home%/%user%/tmp:/bin:/usr/bin:/usr/local/bin:/var/www/html:/tmp:/usr/share:/etc/phpMyAdmin:/etc/phpmyadmin:/var/lib/phpmyadmin:/etc/roundcubemail:/etc/roundcube:/var/lib/roundcube
|
|
||||||
<IfModule mod_ruid2.c>
|
<IfModule mod_ruid2.c>
|
||||||
RMode config
|
RMode config
|
||||||
RUidGid %user% %group%
|
RUidGid %user% %group%
|
||||||
|
|
3
install/ubuntu/12.10/templates/web/apache2/phpcgi.stpl
Executable file → Normal file
3
install/ubuntu/12.10/templates/web/apache2/phpcgi.stpl
Executable file → Normal file
|
@ -15,6 +15,9 @@
|
||||||
SSLRequireSSL
|
SSLRequireSSL
|
||||||
AllowOverride All
|
AllowOverride All
|
||||||
Options +Includes -Indexes +ExecCGI
|
Options +Includes -Indexes +ExecCGI
|
||||||
|
php_admin_value open_basedir %docroot%:%home%/%user%/tmp
|
||||||
|
php_admin_value upload_tmp_dir %home%/%user%/tmp
|
||||||
|
php_admin_value session.save_path %home%/%user%/tmp
|
||||||
Action phpcgi-script /cgi-bin/php
|
Action phpcgi-script /cgi-bin/php
|
||||||
<Files *.php>
|
<Files *.php>
|
||||||
SetHandler phpcgi-script
|
SetHandler phpcgi-script
|
||||||
|
|
3
install/ubuntu/12.10/templates/web/apache2/phpcgi.tpl
Executable file → Normal file
3
install/ubuntu/12.10/templates/web/apache2/phpcgi.tpl
Executable file → Normal file
|
@ -14,6 +14,9 @@
|
||||||
<Directory %docroot%>
|
<Directory %docroot%>
|
||||||
AllowOverride All
|
AllowOverride All
|
||||||
Options +Includes -Indexes +ExecCGI
|
Options +Includes -Indexes +ExecCGI
|
||||||
|
php_admin_value open_basedir %docroot%:%home%/%user%/tmp
|
||||||
|
php_admin_value upload_tmp_dir %home%/%user%/tmp
|
||||||
|
php_admin_value session.save_path %home%/%user%/tmp
|
||||||
Action phpcgi-script /cgi-bin/php
|
Action phpcgi-script /cgi-bin/php
|
||||||
<Files *.php>
|
<Files *.php>
|
||||||
SetHandler phpcgi-script
|
SetHandler phpcgi-script
|
||||||
|
|
3
install/ubuntu/12.10/templates/web/apache2/phpfcgid.stpl
Executable file → Normal file
3
install/ubuntu/12.10/templates/web/apache2/phpfcgid.stpl
Executable file → Normal file
|
@ -15,6 +15,9 @@
|
||||||
SSLRequireSSL
|
SSLRequireSSL
|
||||||
AllowOverride All
|
AllowOverride All
|
||||||
Options +Includes -Indexes +ExecCGI
|
Options +Includes -Indexes +ExecCGI
|
||||||
|
php_admin_value open_basedir %docroot%:%home%/%user%/tmp
|
||||||
|
php_admin_value upload_tmp_dir %home%/%user%/tmp
|
||||||
|
php_admin_value session.save_path %home%/%user%/tmp
|
||||||
<Files *.php>
|
<Files *.php>
|
||||||
SetHandler fcgid-script
|
SetHandler fcgid-script
|
||||||
</Files>
|
</Files>
|
||||||
|
|
3
install/ubuntu/12.10/templates/web/apache2/phpfcgid.tpl
Executable file → Normal file
3
install/ubuntu/12.10/templates/web/apache2/phpfcgid.tpl
Executable file → Normal file
|
@ -14,6 +14,9 @@
|
||||||
<Directory %docroot%>
|
<Directory %docroot%>
|
||||||
AllowOverride All
|
AllowOverride All
|
||||||
Options +Includes -Indexes +ExecCGI
|
Options +Includes -Indexes +ExecCGI
|
||||||
|
php_admin_value open_basedir %docroot%:%home%/%user%/tmp
|
||||||
|
php_admin_value upload_tmp_dir %home%/%user%/tmp
|
||||||
|
php_admin_value session.save_path %home%/%user%/tmp
|
||||||
<Files *.php>
|
<Files *.php>
|
||||||
SetHandler fcgid-script
|
SetHandler fcgid-script
|
||||||
</Files>
|
</Files>
|
||||||
|
|
5
install/ubuntu/13.04/templates/web/apache2/basedir.stpl
Executable file → Normal file
5
install/ubuntu/13.04/templates/web/apache2/basedir.stpl
Executable file → Normal file
|
@ -15,7 +15,10 @@
|
||||||
AllowOverride All
|
AllowOverride All
|
||||||
SSLRequireSSL
|
SSLRequireSSL
|
||||||
Options +Includes -Indexes +ExecCGI
|
Options +Includes -Indexes +ExecCGI
|
||||||
php_admin_value open_basedir %docroot%
|
php_admin_value open_basedir %docroot%:%home%/%user%/tmp
|
||||||
|
php_admin_value upload_tmp_dir %home%/%user%/tmp
|
||||||
|
php_admin_value session.save_path %home%/%user%/tmp
|
||||||
|
php_admin_value sendmail_path "/usr/sbin/sendmail -t -i -f info@%domain%"
|
||||||
</Directory>
|
</Directory>
|
||||||
<Directory %home%/%user%/web/%domain%/stats>
|
<Directory %home%/%user%/web/%domain%/stats>
|
||||||
AllowOverride All
|
AllowOverride All
|
||||||
|
|
5
install/ubuntu/13.04/templates/web/apache2/basedir.tpl
Executable file → Normal file
5
install/ubuntu/13.04/templates/web/apache2/basedir.tpl
Executable file → Normal file
|
@ -14,7 +14,10 @@
|
||||||
<Directory %docroot%>
|
<Directory %docroot%>
|
||||||
AllowOverride All
|
AllowOverride All
|
||||||
Options +Includes -Indexes +ExecCGI
|
Options +Includes -Indexes +ExecCGI
|
||||||
php_admin_value open_basedir %docroot%
|
php_admin_value open_basedir %docroot%:%home%/%user%/tmp
|
||||||
|
php_admin_value upload_tmp_dir %home%/%user%/tmp
|
||||||
|
php_admin_value session.save_path %home%/%user%/tmp
|
||||||
|
php_admin_value sendmail_path "/usr/sbin/sendmail -t -i -f info@%domain%"
|
||||||
</Directory>
|
</Directory>
|
||||||
<Directory %home%/%user%/web/%domain%/stats>
|
<Directory %home%/%user%/web/%domain%/stats>
|
||||||
AllowOverride All
|
AllowOverride All
|
||||||
|
|
3
install/ubuntu/13.04/templates/web/apache2/default.stpl
Executable file → Normal file
3
install/ubuntu/13.04/templates/web/apache2/default.stpl
Executable file → Normal file
|
@ -15,6 +15,9 @@
|
||||||
AllowOverride All
|
AllowOverride All
|
||||||
SSLRequireSSL
|
SSLRequireSSL
|
||||||
Options +Includes -Indexes +ExecCGI
|
Options +Includes -Indexes +ExecCGI
|
||||||
|
php_admin_value open_basedir %docroot%:%home%/%user%/tmp
|
||||||
|
php_admin_value upload_tmp_dir %home%/%user%/tmp
|
||||||
|
php_admin_value session.save_path %home%/%user%/tmp
|
||||||
</Directory>
|
</Directory>
|
||||||
<Directory %home%/%user%/web/%domain%/stats>
|
<Directory %home%/%user%/web/%domain%/stats>
|
||||||
AllowOverride All
|
AllowOverride All
|
||||||
|
|
3
install/ubuntu/13.04/templates/web/apache2/default.tpl
Executable file → Normal file
3
install/ubuntu/13.04/templates/web/apache2/default.tpl
Executable file → Normal file
|
@ -14,6 +14,9 @@
|
||||||
<Directory %docroot%>
|
<Directory %docroot%>
|
||||||
AllowOverride All
|
AllowOverride All
|
||||||
Options +Includes -Indexes +ExecCGI
|
Options +Includes -Indexes +ExecCGI
|
||||||
|
php_admin_value open_basedir %docroot%:%home%/%user%/tmp
|
||||||
|
php_admin_value upload_tmp_dir %home%/%user%/tmp
|
||||||
|
php_admin_value session.save_path %home%/%user%/tmp
|
||||||
</Directory>
|
</Directory>
|
||||||
<Directory %home%/%user%/web/%domain%/stats>
|
<Directory %home%/%user%/web/%domain%/stats>
|
||||||
AllowOverride All
|
AllowOverride All
|
||||||
|
|
5
install/ubuntu/13.04/templates/web/apache2/hosting.stpl
Executable file → Normal file
5
install/ubuntu/13.04/templates/web/apache2/hosting.stpl
Executable file → Normal file
|
@ -15,15 +15,16 @@
|
||||||
AllowOverride All
|
AllowOverride All
|
||||||
SSLRequireSSL
|
SSLRequireSSL
|
||||||
Options +Includes -Indexes +ExecCGI
|
Options +Includes -Indexes +ExecCGI
|
||||||
php_admin_value upload_tmp_dir %home%/%user%/tmp
|
|
||||||
php_admin_value upload_max_filesize 10M
|
php_admin_value upload_max_filesize 10M
|
||||||
php_admin_value max_execution_time 20
|
php_admin_value max_execution_time 20
|
||||||
php_admin_value post_max_size 8M
|
php_admin_value post_max_size 8M
|
||||||
php_admin_value memory_limit 32M
|
php_admin_value memory_limit 32M
|
||||||
php_admin_flag mysql.allow_persistent off
|
php_admin_flag mysql.allow_persistent off
|
||||||
php_admin_flag safe_mode off
|
php_admin_flag safe_mode off
|
||||||
|
php_admin_value sendmail_path "/usr/sbin/sendmail -t -i -f info@%domain%"
|
||||||
|
php_admin_value open_basedir %docroot%:%home%/%user%/tmp:/bin:/usr/bin:/usr/local/bin:/var/www/html:/tmp:/usr/share:/etc/phpMyAdmin:/etc/phpmyadmin:/var/lib/phpmyadmin:/etc/roundcubemail:/etc/roundcube:/var/lib/roundcube
|
||||||
|
php_admin_value upload_tmp_dir %home%/%user%/tmp
|
||||||
php_admin_value session.save_path %home%/%user%/tmp
|
php_admin_value session.save_path %home%/%user%/tmp
|
||||||
php_admin_value sendmail_path '/usr/sbin/sendmail -t -i -f %email%'
|
|
||||||
</Directory>
|
</Directory>
|
||||||
<Directory %home%/%user%/web/%domain%/stats>
|
<Directory %home%/%user%/web/%domain%/stats>
|
||||||
AllowOverride All
|
AllowOverride All
|
||||||
|
|
5
install/ubuntu/13.04/templates/web/apache2/hosting.tpl
Executable file → Normal file
5
install/ubuntu/13.04/templates/web/apache2/hosting.tpl
Executable file → Normal file
|
@ -14,15 +14,16 @@
|
||||||
<Directory %docroot%>
|
<Directory %docroot%>
|
||||||
AllowOverride All
|
AllowOverride All
|
||||||
Options +Includes -Indexes +ExecCGI
|
Options +Includes -Indexes +ExecCGI
|
||||||
php_admin_value upload_tmp_dir %home%/%user%/tmp
|
|
||||||
php_admin_value upload_max_filesize 10M
|
php_admin_value upload_max_filesize 10M
|
||||||
php_admin_value max_execution_time 20
|
php_admin_value max_execution_time 20
|
||||||
php_admin_value post_max_size 8M
|
php_admin_value post_max_size 8M
|
||||||
php_admin_value memory_limit 32M
|
php_admin_value memory_limit 32M
|
||||||
php_admin_flag mysql.allow_persistent off
|
php_admin_flag mysql.allow_persistent off
|
||||||
php_admin_flag safe_mode off
|
php_admin_flag safe_mode off
|
||||||
|
php_admin_value sendmail_path "/usr/sbin/sendmail -t -i -f info@%domain%"
|
||||||
|
php_admin_value open_basedir %docroot%:%home%/%user%/tmp:/bin:/usr/bin:/usr/local/bin:/var/www/html:/tmp:/usr/share:/etc/phpMyAdmin:/etc/phpmyadmin:/var/lib/phpmyadmin:/etc/roundcubemail:/etc/roundcube:/var/lib/roundcube
|
||||||
|
php_admin_value upload_tmp_dir %home%/%user%/tmp
|
||||||
php_admin_value session.save_path %home%/%user%/tmp
|
php_admin_value session.save_path %home%/%user%/tmp
|
||||||
php_admin_value sendmail_path '/usr/sbin/sendmail -t -i -f %email%'
|
|
||||||
</Directory>
|
</Directory>
|
||||||
<Directory %home%/%user%/web/%domain%/stats>
|
<Directory %home%/%user%/web/%domain%/stats>
|
||||||
AllowOverride All
|
AllowOverride All
|
||||||
|
|
3
install/ubuntu/13.04/templates/web/apache2/phpcgi.stpl
Executable file → Normal file
3
install/ubuntu/13.04/templates/web/apache2/phpcgi.stpl
Executable file → Normal file
|
@ -15,6 +15,9 @@
|
||||||
SSLRequireSSL
|
SSLRequireSSL
|
||||||
AllowOverride All
|
AllowOverride All
|
||||||
Options +Includes -Indexes +ExecCGI
|
Options +Includes -Indexes +ExecCGI
|
||||||
|
php_admin_value open_basedir %docroot%:%home%/%user%/tmp
|
||||||
|
php_admin_value upload_tmp_dir %home%/%user%/tmp
|
||||||
|
php_admin_value session.save_path %home%/%user%/tmp
|
||||||
Action phpcgi-script /cgi-bin/php
|
Action phpcgi-script /cgi-bin/php
|
||||||
<Files *.php>
|
<Files *.php>
|
||||||
SetHandler phpcgi-script
|
SetHandler phpcgi-script
|
||||||
|
|
3
install/ubuntu/13.04/templates/web/apache2/phpcgi.tpl
Executable file → Normal file
3
install/ubuntu/13.04/templates/web/apache2/phpcgi.tpl
Executable file → Normal file
|
@ -14,6 +14,9 @@
|
||||||
<Directory %docroot%>
|
<Directory %docroot%>
|
||||||
AllowOverride All
|
AllowOverride All
|
||||||
Options +Includes -Indexes +ExecCGI
|
Options +Includes -Indexes +ExecCGI
|
||||||
|
php_admin_value open_basedir %docroot%:%home%/%user%/tmp
|
||||||
|
php_admin_value upload_tmp_dir %home%/%user%/tmp
|
||||||
|
php_admin_value session.save_path %home%/%user%/tmp
|
||||||
Action phpcgi-script /cgi-bin/php
|
Action phpcgi-script /cgi-bin/php
|
||||||
<Files *.php>
|
<Files *.php>
|
||||||
SetHandler phpcgi-script
|
SetHandler phpcgi-script
|
||||||
|
|
3
install/ubuntu/13.04/templates/web/apache2/phpfcgid.stpl
Executable file → Normal file
3
install/ubuntu/13.04/templates/web/apache2/phpfcgid.stpl
Executable file → Normal file
|
@ -15,6 +15,9 @@
|
||||||
SSLRequireSSL
|
SSLRequireSSL
|
||||||
AllowOverride All
|
AllowOverride All
|
||||||
Options +Includes -Indexes +ExecCGI
|
Options +Includes -Indexes +ExecCGI
|
||||||
|
php_admin_value open_basedir %docroot%:%home%/%user%/tmp
|
||||||
|
php_admin_value upload_tmp_dir %home%/%user%/tmp
|
||||||
|
php_admin_value session.save_path %home%/%user%/tmp
|
||||||
<Files *.php>
|
<Files *.php>
|
||||||
SetHandler fcgid-script
|
SetHandler fcgid-script
|
||||||
</Files>
|
</Files>
|
||||||
|
|
3
install/ubuntu/13.04/templates/web/apache2/phpfcgid.tpl
Executable file → Normal file
3
install/ubuntu/13.04/templates/web/apache2/phpfcgid.tpl
Executable file → Normal file
|
@ -14,6 +14,9 @@
|
||||||
<Directory %docroot%>
|
<Directory %docroot%>
|
||||||
AllowOverride All
|
AllowOverride All
|
||||||
Options +Includes -Indexes +ExecCGI
|
Options +Includes -Indexes +ExecCGI
|
||||||
|
php_admin_value open_basedir %docroot%:%home%/%user%/tmp
|
||||||
|
php_admin_value upload_tmp_dir %home%/%user%/tmp
|
||||||
|
php_admin_value session.save_path %home%/%user%/tmp
|
||||||
<Files *.php>
|
<Files *.php>
|
||||||
SetHandler fcgid-script
|
SetHandler fcgid-script
|
||||||
</Files>
|
</Files>
|
||||||
|
|
5
install/ubuntu/13.10/templates/web/apache2/basedir.stpl
Executable file → Normal file
5
install/ubuntu/13.10/templates/web/apache2/basedir.stpl
Executable file → Normal file
|
@ -15,7 +15,10 @@
|
||||||
AllowOverride All
|
AllowOverride All
|
||||||
SSLRequireSSL
|
SSLRequireSSL
|
||||||
Options +Includes -Indexes +ExecCGI
|
Options +Includes -Indexes +ExecCGI
|
||||||
php_admin_value open_basedir %docroot%
|
php_admin_value open_basedir %docroot%:%home%/%user%/tmp
|
||||||
|
php_admin_value upload_tmp_dir %home%/%user%/tmp
|
||||||
|
php_admin_value session.save_path %home%/%user%/tmp
|
||||||
|
php_admin_value sendmail_path "/usr/sbin/sendmail -t -i -f info@%domain%"
|
||||||
</Directory>
|
</Directory>
|
||||||
<Directory %home%/%user%/web/%domain%/stats>
|
<Directory %home%/%user%/web/%domain%/stats>
|
||||||
AllowOverride All
|
AllowOverride All
|
||||||
|
|
5
install/ubuntu/13.10/templates/web/apache2/basedir.tpl
Executable file → Normal file
5
install/ubuntu/13.10/templates/web/apache2/basedir.tpl
Executable file → Normal file
|
@ -14,7 +14,10 @@
|
||||||
<Directory %docroot%>
|
<Directory %docroot%>
|
||||||
AllowOverride All
|
AllowOverride All
|
||||||
Options +Includes -Indexes +ExecCGI
|
Options +Includes -Indexes +ExecCGI
|
||||||
php_admin_value open_basedir %docroot%
|
php_admin_value open_basedir %docroot%:%home%/%user%/tmp
|
||||||
|
php_admin_value upload_tmp_dir %home%/%user%/tmp
|
||||||
|
php_admin_value session.save_path %home%/%user%/tmp
|
||||||
|
php_admin_value sendmail_path "/usr/sbin/sendmail -t -i -f info@%domain%"
|
||||||
</Directory>
|
</Directory>
|
||||||
<Directory %home%/%user%/web/%domain%/stats>
|
<Directory %home%/%user%/web/%domain%/stats>
|
||||||
AllowOverride All
|
AllowOverride All
|
||||||
|
|
3
install/ubuntu/13.10/templates/web/apache2/default.stpl
Executable file → Normal file
3
install/ubuntu/13.10/templates/web/apache2/default.stpl
Executable file → Normal file
|
@ -15,6 +15,9 @@
|
||||||
AllowOverride All
|
AllowOverride All
|
||||||
SSLRequireSSL
|
SSLRequireSSL
|
||||||
Options +Includes -Indexes +ExecCGI
|
Options +Includes -Indexes +ExecCGI
|
||||||
|
php_admin_value open_basedir %docroot%:%home%/%user%/tmp
|
||||||
|
php_admin_value upload_tmp_dir %home%/%user%/tmp
|
||||||
|
php_admin_value session.save_path %home%/%user%/tmp
|
||||||
</Directory>
|
</Directory>
|
||||||
<Directory %home%/%user%/web/%domain%/stats>
|
<Directory %home%/%user%/web/%domain%/stats>
|
||||||
AllowOverride All
|
AllowOverride All
|
||||||
|
|
3
install/ubuntu/13.10/templates/web/apache2/default.tpl
Executable file → Normal file
3
install/ubuntu/13.10/templates/web/apache2/default.tpl
Executable file → Normal file
|
@ -14,6 +14,9 @@
|
||||||
<Directory %docroot%>
|
<Directory %docroot%>
|
||||||
AllowOverride All
|
AllowOverride All
|
||||||
Options +Includes -Indexes +ExecCGI
|
Options +Includes -Indexes +ExecCGI
|
||||||
|
php_admin_value open_basedir %docroot%:%home%/%user%/tmp
|
||||||
|
php_admin_value upload_tmp_dir %home%/%user%/tmp
|
||||||
|
php_admin_value session.save_path %home%/%user%/tmp
|
||||||
</Directory>
|
</Directory>
|
||||||
<Directory %home%/%user%/web/%domain%/stats>
|
<Directory %home%/%user%/web/%domain%/stats>
|
||||||
AllowOverride All
|
AllowOverride All
|
||||||
|
|
6
install/ubuntu/13.10/templates/web/apache2/hosting.stpl
Executable file → Normal file
6
install/ubuntu/13.10/templates/web/apache2/hosting.stpl
Executable file → Normal file
|
@ -15,20 +15,20 @@
|
||||||
AllowOverride All
|
AllowOverride All
|
||||||
SSLRequireSSL
|
SSLRequireSSL
|
||||||
Options +Includes -Indexes +ExecCGI
|
Options +Includes -Indexes +ExecCGI
|
||||||
php_admin_value upload_tmp_dir %home%/%user%/tmp
|
|
||||||
php_admin_value upload_max_filesize 10M
|
php_admin_value upload_max_filesize 10M
|
||||||
php_admin_value max_execution_time 20
|
php_admin_value max_execution_time 20
|
||||||
php_admin_value post_max_size 8M
|
php_admin_value post_max_size 8M
|
||||||
php_admin_value memory_limit 32M
|
php_admin_value memory_limit 32M
|
||||||
php_admin_flag mysql.allow_persistent off
|
php_admin_flag mysql.allow_persistent off
|
||||||
php_admin_flag safe_mode off
|
php_admin_flag safe_mode off
|
||||||
|
php_admin_value sendmail_path "/usr/sbin/sendmail -t -i -f info@%domain%"
|
||||||
|
php_admin_value open_basedir %docroot%:%home%/%user%/tmp:/bin:/usr/bin:/usr/local/bin:/var/www/html:/tmp:/usr/share:/etc/phpMyAdmin:/etc/phpmyadmin:/var/lib/phpmyadmin:/etc/roundcubemail:/etc/roundcube:/var/lib/roundcube
|
||||||
|
php_admin_value upload_tmp_dir %home%/%user%/tmp
|
||||||
php_admin_value session.save_path %home%/%user%/tmp
|
php_admin_value session.save_path %home%/%user%/tmp
|
||||||
php_admin_value sendmail_path '/usr/sbin/sendmail -t -i -f %email%'
|
|
||||||
</Directory>
|
</Directory>
|
||||||
<Directory %home%/%user%/web/%domain%/stats>
|
<Directory %home%/%user%/web/%domain%/stats>
|
||||||
AllowOverride All
|
AllowOverride All
|
||||||
</Directory>
|
</Directory>
|
||||||
php_admin_value open_basedir %home%/%user%/web:%home%/%user%/tmp:/bin:/usr/bin:/usr/local/bin:/var/www/html:/tmp:/usr/share:/etc/phpMyAdmin:/etc/phpmyadmin:/var/lib/phpmyadmin:/etc/roundcubemail:/etc/roundcube:/var/lib/roundcube
|
|
||||||
SSLEngine on
|
SSLEngine on
|
||||||
SSLVerifyClient none
|
SSLVerifyClient none
|
||||||
SSLCertificateFile %ssl_crt%
|
SSLCertificateFile %ssl_crt%
|
||||||
|
|
6
install/ubuntu/13.10/templates/web/apache2/hosting.tpl
Executable file → Normal file
6
install/ubuntu/13.10/templates/web/apache2/hosting.tpl
Executable file → Normal file
|
@ -14,20 +14,20 @@
|
||||||
<Directory %docroot%>
|
<Directory %docroot%>
|
||||||
AllowOverride All
|
AllowOverride All
|
||||||
Options +Includes -Indexes +ExecCGI
|
Options +Includes -Indexes +ExecCGI
|
||||||
php_admin_value upload_tmp_dir %home%/%user%/tmp
|
|
||||||
php_admin_value upload_max_filesize 10M
|
php_admin_value upload_max_filesize 10M
|
||||||
php_admin_value max_execution_time 20
|
php_admin_value max_execution_time 20
|
||||||
php_admin_value post_max_size 8M
|
php_admin_value post_max_size 8M
|
||||||
php_admin_value memory_limit 32M
|
php_admin_value memory_limit 32M
|
||||||
php_admin_flag mysql.allow_persistent off
|
php_admin_flag mysql.allow_persistent off
|
||||||
php_admin_flag safe_mode off
|
php_admin_flag safe_mode off
|
||||||
|
php_admin_value sendmail_path "/usr/sbin/sendmail -t -i -f info@%domain%"
|
||||||
|
php_admin_value open_basedir %docroot%:%home%/%user%/tmp:/bin:/usr/bin:/usr/local/bin:/var/www/html:/tmp:/usr/share:/etc/phpMyAdmin:/etc/phpmyadmin:/var/lib/phpmyadmin:/etc/roundcubemail:/etc/roundcube:/var/lib/roundcube
|
||||||
|
php_admin_value upload_tmp_dir %home%/%user%/tmp
|
||||||
php_admin_value session.save_path %home%/%user%/tmp
|
php_admin_value session.save_path %home%/%user%/tmp
|
||||||
php_admin_value sendmail_path '/usr/sbin/sendmail -t -i -f %email%'
|
|
||||||
</Directory>
|
</Directory>
|
||||||
<Directory %home%/%user%/web/%domain%/stats>
|
<Directory %home%/%user%/web/%domain%/stats>
|
||||||
AllowOverride All
|
AllowOverride All
|
||||||
</Directory>
|
</Directory>
|
||||||
php_admin_value open_basedir %home%/%user%/web:%home%/%user%/tmp:/bin:/usr/bin:/usr/local/bin:/var/www/html:/tmp:/usr/share:/etc/phpMyAdmin:/etc/phpmyadmin:/var/lib/phpmyadmin:/etc/roundcubemail:/etc/roundcube:/var/lib/roundcube
|
|
||||||
<IfModule mod_ruid2.c>
|
<IfModule mod_ruid2.c>
|
||||||
RMode config
|
RMode config
|
||||||
RUidGid %user% %group%
|
RUidGid %user% %group%
|
||||||
|
|
3
install/ubuntu/13.10/templates/web/apache2/phpcgi.stpl
Executable file → Normal file
3
install/ubuntu/13.10/templates/web/apache2/phpcgi.stpl
Executable file → Normal file
|
@ -15,6 +15,9 @@
|
||||||
SSLRequireSSL
|
SSLRequireSSL
|
||||||
AllowOverride All
|
AllowOverride All
|
||||||
Options +Includes -Indexes +ExecCGI
|
Options +Includes -Indexes +ExecCGI
|
||||||
|
php_admin_value open_basedir %docroot%:%home%/%user%/tmp
|
||||||
|
php_admin_value upload_tmp_dir %home%/%user%/tmp
|
||||||
|
php_admin_value session.save_path %home%/%user%/tmp
|
||||||
Action phpcgi-script /cgi-bin/php
|
Action phpcgi-script /cgi-bin/php
|
||||||
<Files *.php>
|
<Files *.php>
|
||||||
SetHandler phpcgi-script
|
SetHandler phpcgi-script
|
||||||
|
|
3
install/ubuntu/13.10/templates/web/apache2/phpcgi.tpl
Executable file → Normal file
3
install/ubuntu/13.10/templates/web/apache2/phpcgi.tpl
Executable file → Normal file
|
@ -14,6 +14,9 @@
|
||||||
<Directory %docroot%>
|
<Directory %docroot%>
|
||||||
AllowOverride All
|
AllowOverride All
|
||||||
Options +Includes -Indexes +ExecCGI
|
Options +Includes -Indexes +ExecCGI
|
||||||
|
php_admin_value open_basedir %docroot%:%home%/%user%/tmp
|
||||||
|
php_admin_value upload_tmp_dir %home%/%user%/tmp
|
||||||
|
php_admin_value session.save_path %home%/%user%/tmp
|
||||||
Action phpcgi-script /cgi-bin/php
|
Action phpcgi-script /cgi-bin/php
|
||||||
<Files *.php>
|
<Files *.php>
|
||||||
SetHandler phpcgi-script
|
SetHandler phpcgi-script
|
||||||
|
|
3
install/ubuntu/13.10/templates/web/apache2/phpfcgid.stpl
Executable file → Normal file
3
install/ubuntu/13.10/templates/web/apache2/phpfcgid.stpl
Executable file → Normal file
|
@ -15,6 +15,9 @@
|
||||||
SSLRequireSSL
|
SSLRequireSSL
|
||||||
AllowOverride All
|
AllowOverride All
|
||||||
Options +Includes -Indexes +ExecCGI
|
Options +Includes -Indexes +ExecCGI
|
||||||
|
php_admin_value open_basedir %docroot%:%home%/%user%/tmp
|
||||||
|
php_admin_value upload_tmp_dir %home%/%user%/tmp
|
||||||
|
php_admin_value session.save_path %home%/%user%/tmp
|
||||||
<Files *.php>
|
<Files *.php>
|
||||||
SetHandler fcgid-script
|
SetHandler fcgid-script
|
||||||
</Files>
|
</Files>
|
||||||
|
|
3
install/ubuntu/13.10/templates/web/apache2/phpfcgid.tpl
Executable file → Normal file
3
install/ubuntu/13.10/templates/web/apache2/phpfcgid.tpl
Executable file → Normal file
|
@ -14,6 +14,9 @@
|
||||||
<Directory %docroot%>
|
<Directory %docroot%>
|
||||||
AllowOverride All
|
AllowOverride All
|
||||||
Options +Includes -Indexes +ExecCGI
|
Options +Includes -Indexes +ExecCGI
|
||||||
|
php_admin_value open_basedir %docroot%:%home%/%user%/tmp
|
||||||
|
php_admin_value upload_tmp_dir %home%/%user%/tmp
|
||||||
|
php_admin_value session.save_path %home%/%user%/tmp
|
||||||
<Files *.php>
|
<Files *.php>
|
||||||
SetHandler fcgid-script
|
SetHandler fcgid-script
|
||||||
</Files>
|
</Files>
|
||||||
|
|
5
install/ubuntu/14.04/templates/web/apache2/basedir.stpl
Executable file → Normal file
5
install/ubuntu/14.04/templates/web/apache2/basedir.stpl
Executable file → Normal file
|
@ -15,7 +15,10 @@
|
||||||
AllowOverride All
|
AllowOverride All
|
||||||
SSLRequireSSL
|
SSLRequireSSL
|
||||||
Options +Includes -Indexes +ExecCGI
|
Options +Includes -Indexes +ExecCGI
|
||||||
php_admin_value open_basedir %docroot%
|
php_admin_value open_basedir %docroot%:%home%/%user%/tmp
|
||||||
|
php_admin_value upload_tmp_dir %home%/%user%/tmp
|
||||||
|
php_admin_value session.save_path %home%/%user%/tmp
|
||||||
|
php_admin_value sendmail_path "/usr/sbin/sendmail -t -i -f info@%domain%"
|
||||||
</Directory>
|
</Directory>
|
||||||
<Directory %home%/%user%/web/%domain%/stats>
|
<Directory %home%/%user%/web/%domain%/stats>
|
||||||
AllowOverride All
|
AllowOverride All
|
||||||
|
|
5
install/ubuntu/14.04/templates/web/apache2/basedir.tpl
Executable file → Normal file
5
install/ubuntu/14.04/templates/web/apache2/basedir.tpl
Executable file → Normal file
|
@ -14,7 +14,10 @@
|
||||||
<Directory %docroot%>
|
<Directory %docroot%>
|
||||||
AllowOverride All
|
AllowOverride All
|
||||||
Options +Includes -Indexes +ExecCGI
|
Options +Includes -Indexes +ExecCGI
|
||||||
php_admin_value open_basedir %docroot%
|
php_admin_value open_basedir %docroot%:%home%/%user%/tmp
|
||||||
|
php_admin_value upload_tmp_dir %home%/%user%/tmp
|
||||||
|
php_admin_value session.save_path %home%/%user%/tmp
|
||||||
|
php_admin_value sendmail_path "/usr/sbin/sendmail -t -i -f info@%domain%"
|
||||||
</Directory>
|
</Directory>
|
||||||
<Directory %home%/%user%/web/%domain%/stats>
|
<Directory %home%/%user%/web/%domain%/stats>
|
||||||
AllowOverride All
|
AllowOverride All
|
||||||
|
|
3
install/ubuntu/14.04/templates/web/apache2/default.stpl
Executable file → Normal file
3
install/ubuntu/14.04/templates/web/apache2/default.stpl
Executable file → Normal file
|
@ -15,6 +15,9 @@
|
||||||
AllowOverride All
|
AllowOverride All
|
||||||
SSLRequireSSL
|
SSLRequireSSL
|
||||||
Options +Includes -Indexes +ExecCGI
|
Options +Includes -Indexes +ExecCGI
|
||||||
|
php_admin_value open_basedir %docroot%:%home%/%user%/tmp
|
||||||
|
php_admin_value upload_tmp_dir %home%/%user%/tmp
|
||||||
|
php_admin_value session.save_path %home%/%user%/tmp
|
||||||
</Directory>
|
</Directory>
|
||||||
<Directory %home%/%user%/web/%domain%/stats>
|
<Directory %home%/%user%/web/%domain%/stats>
|
||||||
AllowOverride All
|
AllowOverride All
|
||||||
|
|
3
install/ubuntu/14.04/templates/web/apache2/default.tpl
Executable file → Normal file
3
install/ubuntu/14.04/templates/web/apache2/default.tpl
Executable file → Normal file
|
@ -14,6 +14,9 @@
|
||||||
<Directory %docroot%>
|
<Directory %docroot%>
|
||||||
AllowOverride All
|
AllowOverride All
|
||||||
Options +Includes -Indexes +ExecCGI
|
Options +Includes -Indexes +ExecCGI
|
||||||
|
php_admin_value open_basedir %docroot%:%home%/%user%/tmp
|
||||||
|
php_admin_value upload_tmp_dir %home%/%user%/tmp
|
||||||
|
php_admin_value session.save_path %home%/%user%/tmp
|
||||||
</Directory>
|
</Directory>
|
||||||
<Directory %home%/%user%/web/%domain%/stats>
|
<Directory %home%/%user%/web/%domain%/stats>
|
||||||
AllowOverride All
|
AllowOverride All
|
||||||
|
|
6
install/ubuntu/14.04/templates/web/apache2/hosting.stpl
Executable file → Normal file
6
install/ubuntu/14.04/templates/web/apache2/hosting.stpl
Executable file → Normal file
|
@ -15,20 +15,20 @@
|
||||||
AllowOverride All
|
AllowOverride All
|
||||||
SSLRequireSSL
|
SSLRequireSSL
|
||||||
Options +Includes -Indexes +ExecCGI
|
Options +Includes -Indexes +ExecCGI
|
||||||
php_admin_value upload_tmp_dir %home%/%user%/tmp
|
|
||||||
php_admin_value upload_max_filesize 10M
|
php_admin_value upload_max_filesize 10M
|
||||||
php_admin_value max_execution_time 20
|
php_admin_value max_execution_time 20
|
||||||
php_admin_value post_max_size 8M
|
php_admin_value post_max_size 8M
|
||||||
php_admin_value memory_limit 32M
|
php_admin_value memory_limit 32M
|
||||||
php_admin_flag mysql.allow_persistent off
|
php_admin_flag mysql.allow_persistent off
|
||||||
php_admin_flag safe_mode off
|
php_admin_flag safe_mode off
|
||||||
|
php_admin_value sendmail_path "/usr/sbin/sendmail -t -i -f info@%domain%"
|
||||||
|
php_admin_value open_basedir %docroot%:%home%/%user%/tmp:/bin:/usr/bin:/usr/local/bin:/var/www/html:/tmp:/usr/share:/etc/phpMyAdmin:/etc/phpmyadmin:/var/lib/phpmyadmin:/etc/roundcubemail:/etc/roundcube:/var/lib/roundcube
|
||||||
|
php_admin_value upload_tmp_dir %home%/%user%/tmp
|
||||||
php_admin_value session.save_path %home%/%user%/tmp
|
php_admin_value session.save_path %home%/%user%/tmp
|
||||||
php_admin_value sendmail_path '/usr/sbin/sendmail -t -i -f %email%'
|
|
||||||
</Directory>
|
</Directory>
|
||||||
<Directory %home%/%user%/web/%domain%/stats>
|
<Directory %home%/%user%/web/%domain%/stats>
|
||||||
AllowOverride All
|
AllowOverride All
|
||||||
</Directory>
|
</Directory>
|
||||||
php_admin_value open_basedir %home%/%user%/web:%home%/%user%/tmp:/bin:/usr/bin:/usr/local/bin:/var/www/html:/tmp:/usr/share:/etc/phpMyAdmin:/etc/phpmyadmin:/var/lib/phpmyadmin:/etc/roundcubemail:/etc/roundcube:/var/lib/roundcube
|
|
||||||
SSLEngine on
|
SSLEngine on
|
||||||
SSLVerifyClient none
|
SSLVerifyClient none
|
||||||
SSLCertificateFile %ssl_crt%
|
SSLCertificateFile %ssl_crt%
|
||||||
|
|
6
install/ubuntu/14.04/templates/web/apache2/hosting.tpl
Executable file → Normal file
6
install/ubuntu/14.04/templates/web/apache2/hosting.tpl
Executable file → Normal file
|
@ -14,20 +14,20 @@
|
||||||
<Directory %docroot%>
|
<Directory %docroot%>
|
||||||
AllowOverride All
|
AllowOverride All
|
||||||
Options +Includes -Indexes +ExecCGI
|
Options +Includes -Indexes +ExecCGI
|
||||||
php_admin_value upload_tmp_dir %home%/%user%/tmp
|
|
||||||
php_admin_value upload_max_filesize 10M
|
php_admin_value upload_max_filesize 10M
|
||||||
php_admin_value max_execution_time 20
|
php_admin_value max_execution_time 20
|
||||||
php_admin_value post_max_size 8M
|
php_admin_value post_max_size 8M
|
||||||
php_admin_value memory_limit 32M
|
php_admin_value memory_limit 32M
|
||||||
php_admin_flag mysql.allow_persistent off
|
php_admin_flag mysql.allow_persistent off
|
||||||
php_admin_flag safe_mode off
|
php_admin_flag safe_mode off
|
||||||
|
php_admin_value sendmail_path "/usr/sbin/sendmail -t -i -f info@%domain%"
|
||||||
|
php_admin_value open_basedir %docroot%:%home%/%user%/tmp:/bin:/usr/bin:/usr/local/bin:/var/www/html:/tmp:/usr/share:/etc/phpMyAdmin:/etc/phpmyadmin:/var/lib/phpmyadmin:/etc/roundcubemail:/etc/roundcube:/var/lib/roundcube
|
||||||
|
php_admin_value upload_tmp_dir %home%/%user%/tmp
|
||||||
php_admin_value session.save_path %home%/%user%/tmp
|
php_admin_value session.save_path %home%/%user%/tmp
|
||||||
php_admin_value sendmail_path '/usr/sbin/sendmail -t -i -f %email%'
|
|
||||||
</Directory>
|
</Directory>
|
||||||
<Directory %home%/%user%/web/%domain%/stats>
|
<Directory %home%/%user%/web/%domain%/stats>
|
||||||
AllowOverride All
|
AllowOverride All
|
||||||
</Directory>
|
</Directory>
|
||||||
php_admin_value open_basedir %home%/%user%/web:%home%/%user%/tmp:/bin:/usr/bin:/usr/local/bin:/var/www/html:/tmp:/usr/share:/etc/phpMyAdmin:/etc/phpmyadmin:/var/lib/phpmyadmin:/etc/roundcubemail:/etc/roundcube:/var/lib/roundcube
|
|
||||||
<IfModule mod_ruid2.c>
|
<IfModule mod_ruid2.c>
|
||||||
RMode config
|
RMode config
|
||||||
RUidGid %user% %group%
|
RUidGid %user% %group%
|
||||||
|
|
3
install/ubuntu/14.04/templates/web/apache2/phpcgi.stpl
Executable file → Normal file
3
install/ubuntu/14.04/templates/web/apache2/phpcgi.stpl
Executable file → Normal file
|
@ -15,6 +15,9 @@
|
||||||
SSLRequireSSL
|
SSLRequireSSL
|
||||||
AllowOverride All
|
AllowOverride All
|
||||||
Options +Includes -Indexes +ExecCGI
|
Options +Includes -Indexes +ExecCGI
|
||||||
|
php_admin_value open_basedir %docroot%:%home%/%user%/tmp
|
||||||
|
php_admin_value upload_tmp_dir %home%/%user%/tmp
|
||||||
|
php_admin_value session.save_path %home%/%user%/tmp
|
||||||
Action phpcgi-script /cgi-bin/php
|
Action phpcgi-script /cgi-bin/php
|
||||||
<Files *.php>
|
<Files *.php>
|
||||||
SetHandler phpcgi-script
|
SetHandler phpcgi-script
|
||||||
|
|
3
install/ubuntu/14.04/templates/web/apache2/phpcgi.tpl
Executable file → Normal file
3
install/ubuntu/14.04/templates/web/apache2/phpcgi.tpl
Executable file → Normal file
|
@ -14,6 +14,9 @@
|
||||||
<Directory %docroot%>
|
<Directory %docroot%>
|
||||||
AllowOverride All
|
AllowOverride All
|
||||||
Options +Includes -Indexes +ExecCGI
|
Options +Includes -Indexes +ExecCGI
|
||||||
|
php_admin_value open_basedir %docroot%:%home%/%user%/tmp
|
||||||
|
php_admin_value upload_tmp_dir %home%/%user%/tmp
|
||||||
|
php_admin_value session.save_path %home%/%user%/tmp
|
||||||
Action phpcgi-script /cgi-bin/php
|
Action phpcgi-script /cgi-bin/php
|
||||||
<Files *.php>
|
<Files *.php>
|
||||||
SetHandler phpcgi-script
|
SetHandler phpcgi-script
|
||||||
|
|
3
install/ubuntu/14.04/templates/web/apache2/phpfcgid.stpl
Executable file → Normal file
3
install/ubuntu/14.04/templates/web/apache2/phpfcgid.stpl
Executable file → Normal file
|
@ -15,6 +15,9 @@
|
||||||
SSLRequireSSL
|
SSLRequireSSL
|
||||||
AllowOverride All
|
AllowOverride All
|
||||||
Options +Includes -Indexes +ExecCGI
|
Options +Includes -Indexes +ExecCGI
|
||||||
|
php_admin_value open_basedir %docroot%:%home%/%user%/tmp
|
||||||
|
php_admin_value upload_tmp_dir %home%/%user%/tmp
|
||||||
|
php_admin_value session.save_path %home%/%user%/tmp
|
||||||
<Files *.php>
|
<Files *.php>
|
||||||
SetHandler fcgid-script
|
SetHandler fcgid-script
|
||||||
</Files>
|
</Files>
|
||||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue