eveseat/installer

View on GitHub
resources/apache-vhost-debian.conf

Summary

Maintainability
Test Coverage
<VirtualHost *:80>
    ServerAdmin webmaster@your.domain
    DocumentRoot ":seatpath"
    ServerName seat.local
    ServerAlias www.seat.local
    ErrorLog ${APACHE_LOG_DIR}/seat-error.log
    CustomLog ${APACHE_LOG_DIR}/seat-access.log combined
    <Directory ":seatpath">
        AllowOverride All
        Order allow,deny
        Allow from all
    </Directory>
</VirtualHost>