Last active
November 2, 2015 22:45
-
-
Save chriscalip/054ece943e5ec32476de to your computer and use it in GitHub Desktop.
Example apache2 conf file to integrate with vagrant vlad system
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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