22 lines
704 B
Smarty
22 lines
704 B
Smarty
#The most simple virtual host possible.
|
|
<VirtualHost $ip:$port>
|
|
ServerAdmin $email
|
|
ServerName $domain
|
|
$ServerAlias
|
|
DocumentRoot $rootDir
|
|
DirectoryIndex index.html index.htm index.php
|
|
# PHP Options
|
|
IncludeOptional vhosts.d/php/$domain-php.conf
|
|
<Directory $rootDir>
|
|
Options $Indexes FollowSymLinks MultiViews
|
|
$AllowOverride
|
|
Require all granted
|
|
</Directory>
|
|
IncludeOptional vhosts.d/extra/$domain-*.conf
|
|
ErrorLog /var/log/$apache_cmd/$domain-error.log
|
|
LogLevel error
|
|
CustomLog /var/log/$apache_cmd/$domain-access.log combined
|
|
# Space for extra configurations
|
|
# Space for extra directories
|
|
# SSL Options
|
|
</VirtualHost>
|