Newer
Older
mailpiler / contrib / webserver / piler-apache-2.x.conf
@SJ SJ on 3 Sep 2015 327 bytes fixed apache example config
<VirtualHost *:80>
    ServerName HOSTNAME

    DocumentRoot "/var/piler/www"

    <Directory /var/piler/www>
       Order allow,deny
       Allow from all

       AllowOverride all
    </Directory>

    ErrorLog "/var/log/apache2/HOSTNAME-error_log"
    CustomLog "/var/log/apache2/HOSTNAME-access_log" common
</VirtualHost>