6559655964
Change-Id: I9bb68f50be21885072e7e999063f723b2059a2e9 Signed-off-by: Paul Belanger <pabelanger@redhat.com>
19 lines
404 B
Plaintext
19 lines
404 B
Plaintext
#
|
|
# Test vhost
|
|
#
|
|
NameVirtualHost *:80
|
|
<VirtualHost *:80>
|
|
ServerName testvhost
|
|
DocumentRoot <%= @docroot %>
|
|
<Directory <%= @docroot %>>
|
|
Options Indexes FollowSymLinks MultiViews
|
|
AllowOverride None
|
|
Order allow,deny
|
|
allow from all
|
|
</Directory>
|
|
ErrorLog /var/log/apache2/error.log
|
|
LogLevel warn
|
|
CustomLog /var/log/apache2/access.log combined
|
|
ServerSignature On
|
|
</VirtualHost>
|