puppet-httpd/templates/test.vhost.erb
2012-04-16 15:19:12 +08:00

19 lines
403 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>