Pull merge.
[yaffs-website] / vendor / chi-teck / drupal-code-generator / templates / other / apache-virtual-host.twig
1 <VirtualHost *:80>
2   ServerName {{ hostname }}
3   ServerAlias www.{{ hostname }}
4   ServerAlias m.{{ hostname }}
5   DocumentRoot {{ docroot }}
6
7   <Directory {{ docroot }}>
8     Options All
9     AllowOverride All
10     Order allow,deny
11     Allow from all
12   </Directory>
13
14 </VirtualHost>