Created
July 11, 2017 16:28
-
-
Save cyberlex404/2e67cbaf55794eea228bfca31de06678 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <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_tmp_dir %home%/%user%/tmp | |
| php_admin_value upload_max_filesize 100M | |
| php_admin_value max_execution_time 30 | |
| php_admin_value post_max_size 64M | |
| php_admin_value memory_limit 512M | |
| php_admin_flag mysql.allow_persistent off | |
| php_admin_flag safe_mode off | |
| php_admin_value session.save_path %home%/%user%/tmp | |
| php_admin_value sendmail_path '/usr/sbin/sendmail -t -i -f %email%' | |
| </Directory> | |
| <Directory %home%/%user%/web/%domain%/stats> | |
| AllowOverride All | |
| </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 | |
| SSLVerifyClient none | |
| SSLCertificateFile %ssl_crt% | |
| SSLCertificateKeyFile %ssl_key% | |
| %ssl_ca_str%SSLCertificateChainFile %ssl_ca% | |
| <IfModule mod_ruid2.c> | |
| RMode config | |
| RUidGid %user% %group% | |
| RGroups www-data | |
| </IfModule> | |
| <IfModule itk.c> | |
| AssignUserID %user% %group% | |
| </IfModule> | |
| IncludeOptional %home%/%user%/conf/web/s%web_system%.%domain%.conf* | |
| </VirtualHost> | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment