comparison vendor/chi-teck/drupal-code-generator/templates/other/apache-virtual-host.twig @ 0:c75dbcec494b

Initial commit from drush-created site
author Chris Cannam
date Thu, 05 Jul 2018 14:24:15 +0000
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:c75dbcec494b
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>