Para que se use a drupal como sitio principal en un dominio se puede hacer algo como lo siguiente en /etc/drupal/apache.conf
<VirtualHost *>
ServerAdmin webmaster@gfc.edu.co
ServerName parroquia.gfc.edu.co
DocumentRoot /usr/share/drupal5
<Directory /usr/share/drupal5/>
Options +FollowSymLinks
AllowOverride All
order allow,deny
allow from all
</Directory>
<Directory /usr/share/drupal5/files>
Options +FollowSymLinks Indexes
AllowOverride All
order allow,deny
allow from all
</Directory>
</VirtualHost>

