10 lines
292 B
Django/Jinja
10 lines
292 B
Django/Jinja
<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>
|