11 lines
292 B
Text
11 lines
292 B
Text
![]() |
<VirtualHost *:80>
|
||
|
ServerAdmin webmaster@localhost
|
||
|
ServerName {{ domain }}.test
|
||
|
ServerAlias www.{{ domain }}.test
|
||
|
DocumentRoot {{ drupal_core_path }}/web
|
||
|
<Directory "{{ drupal_core_path }}/web">
|
||
|
Options FollowSymlinks Indexes
|
||
|
AllowOverride All
|
||
|
</Directory>
|
||
|
</VirtualHost>
|