Skip to content

Instantly share code, notes, and snippets.

@emcrisostomo
Created October 17, 2014 18:01
Show Gist options
  • Save emcrisostomo/77f97fd0a07bf5ab87f8 to your computer and use it in GitHub Desktop.
Save emcrisostomo/77f97fd0a07bf5ab87f8 to your computer and use it in GitHub Desktop.
Drupal Virtual Host
<VirtualHost *:80>
ServerName drupal.host.name
DocumentRoot /usr/local/www/drupal7
<Directory "/usr/local/www/drupal7">
Options Indexes FollowSymLinks
AllowOverride All
Require all granted
</Directory>
ErrorLog ${APACHE_LOG_DIR}/drupal-error.log
LogLevel warn
CustomLog ${APACHE_LOG_DIR}/drupal-access.log combined
</VirtualHost>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment