You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
56 lines
2.3 KiB
56 lines
2.3 KiB
#=========================================================================#
|
|
# Default Web Domain Template #
|
|
# DO NOT MODIFY THIS FILE! CHANGES WILL BE LOST WHEN REBUILDING DOMAINS #
|
|
# https://hestiacp.com/docs/server-administration/web-templates.html #
|
|
#=========================================================================#
|
|
|
|
<VirtualHost %ip%:%web_ssl_port%>
|
|
|
|
ServerName %domain_idn%
|
|
%alias_string%
|
|
ServerAdmin %email%
|
|
DocumentRoot %sdocroot%
|
|
ScriptAlias /cgi-bin/ %home%/%user%/web/%domain%/cgi-bin/
|
|
Alias /vstats/ %home%/%user%/web/%domain%/stats/
|
|
Alias /error/ %home%/%user%/web/%domain%/document_errors/
|
|
#SuexecUserGroup %user% %group%
|
|
CustomLog /var/log/%web_system%/domains/%domain%.bytes bytes
|
|
CustomLog /var/log/%web_system%/domains/%domain%.log combined
|
|
ErrorLog /var/log/%web_system%/domains/%domain%.error.log
|
|
<Directory %sdocroot%>
|
|
AllowOverride All
|
|
SSLRequireSSL
|
|
Options +Includes -Indexes +ExecCGI
|
|
php_admin_value upload_max_filesize 10M
|
|
php_admin_value max_execution_time 20
|
|
php_admin_value post_max_size 8M
|
|
php_admin_value memory_limit 32M
|
|
php_admin_flag mysql.allow_persistent off
|
|
php_admin_flag safe_mode off
|
|
php_admin_value sendmail_path "/usr/sbin/sendmail -t -i -f info@%domain_idn%"
|
|
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 sys_temp_dir %home%/%user%/tmp
|
|
</Directory>
|
|
<Directory %home%/%user%/web/%domain%/stats>
|
|
AllowOverride All
|
|
</Directory>
|
|
SSLEngine on
|
|
SSLVerifyClient none
|
|
SSLCertificateFile %ssl_crt%
|
|
SSLCertificateKeyFile %ssl_key%
|
|
%ssl_ca_str%SSLCertificateChainFile %ssl_ca%
|
|
<IfModule mod_ruid2.c>
|
|
RMode config
|
|
RUidGid %user% %group%
|
|
RGroups apache
|
|
</IfModule>
|
|
<IfModule mpm_itk.c>
|
|
AssignUserID %user% %group%
|
|
</IfModule>
|
|
|
|
IncludeOptional %home%/%user%/conf/web/%domain%/%web_system%.ssl.conf_*
|
|
IncludeOptional /etc/httpd/conf.d/*.inc*
|
|
</VirtualHost>
|