All pastes #1281747 Raw Edit

Vhost Template

public text v1 · immutable
#1281747 ·published 2008-12-10 16:27 UTC
rendered paste body
<VirtualHost *:80>
    ServerAdmin webmaster@test.com

    DocumentRoot /home/vhost/test.com/htdocs
    ServerName test.com

    <Directory /home/vhost/test.com/htdocs>
        Options Indexes FollowSymLinks
        AllowOverride All
        Order allow,deny
        Allow from all
    </Directory>

    ErrorLog /var/log/apache2/error.log

    # Possible values include: debug, info, notice, warn, error, crit,
    # alert, emerg.
    LogLevel warn

    CustomLog /var/log/apache2/access.log combined

    ServerSignature Off
</VirtualHost>