puppet-httpd/pkg/puppetlabs-apache-0.0.3/files/test.vhost

19 lines
403 B
ApacheConf

#
# Test vhost
#
NameVirtualHost *:80
<VirtualHost *:80>
ServerName testvhost
DocumentRoot /tmp/testvhost
<Directory /tmp/testvhost>
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>