15 lines
278 B
Twig
15 lines
278 B
Twig
![]() |
<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>
|