Fix for apache virtualhost configuration for drupal

  1. # can go in, e.g:  /etc/apache2/sites-available/drupal1.conf
  2. <VirtualHost *:80>
  3.     ServerName drupal1 #put this in your hosts file
  4.     DocumentRoot /home/user/www/drupal1 #drupal root dir
  5.     CustomLog /var/log/drupal1-access.log combined
  6.     ErrorLog  /var/log/drupal1-error.log
  7.     php_value memory_limit 32M
  8. </VirtualHost>
  9.  
  10. in /etc/hosts, add:
  11.  
  12. 127.0.0.1 drupal1