Skip to content

Instantly share code, notes, and snippets.

@chriscalip
Last active November 2, 2015 22:45
Show Gist options
  • Save chriscalip/054ece943e5ec32476de to your computer and use it in GitHub Desktop.
Save chriscalip/054ece943e5ec32476de to your computer and use it in GitHub Desktop.
Example apache2 conf file to integrate with vagrant vlad system
<VirtualHost *:80>
ServerAdmin [email protected]
ServerName example1.drupal.local
DocumentRoot /vagrant/sites/example1
<Directory "/vagrant/sites/example1/">
Options Indexes FollowSymLinks
AllowOverride All
Order allow,deny
Allow from all
Require all granted
</Directory>
ErrorLog /var/www/site/logs/example1.error.log
LogLevel warn
CustomLog /var/www/site/logs/example1.access.log combined
</VirtualHost>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment