## This is the standard apache configuration file, only serving over 80.
## This will be re-written when loadbalancer-relation is run, creating
## the proxy balancer setups, etc. Untill then there's not need to proxypass
## to another apache virtual host 

<VirtualHost *:80>
  ServerName localhost
  ServerAlias *
  ServerAdmin webmaster@localhost

  DocumentRoot /var/www
  <Directory /var/www>
    Options Indexes FollowSymLinks MultiViews
    AllowOverride All
  </Directory>

  ErrorLog ${APACHE_LOG_DIR}/wordpress-error.log

  LogLevel warn
  CustomLog ${APACHE_LOG_DIR}/wordpress-access.log combined
</VirtualHost>
