Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / chi-teck / drupal-code-generator / templates / other / apache-virtual-host.twig
diff --git a/vendor/chi-teck/drupal-code-generator/templates/other/apache-virtual-host.twig b/vendor/chi-teck/drupal-code-generator/templates/other/apache-virtual-host.twig
new file mode 100644 (file)
index 0000000..b9618d8
--- /dev/null
@@ -0,0 +1,14 @@
+<VirtualHost *:80>
+  ServerName {{ hostname }}
+  ServerAlias www.{{ hostname }}
+  ServerAlias m.{{ hostname }}
+  DocumentRoot {{ docroot }}
+
+  <Directory {{ docroot }}>
+    Options All
+    AllowOverride All
+    Order allow,deny
+    Allow from all
+  </Directory>
+
+</VirtualHost>