Created
May 9, 2014 19:40
-
-
Save DannyNunez/ef3cf373f3b9e8e31b30 to your computer and use it in GitHub Desktop.
v-host ubuntu 12.04
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> | |
ServerName dev.example.com | |
DocumentRoot "/var/www/example/public_html" | |
<Directory "/var/www/example/public_html"> | |
Options Indexes FollowSymLinks Includes ExecCGI | |
AllowOverride All | |
Require all granted | |
</Directory> | |
ErrorLog "logs/mysite.local-error_log" | |
</VirtualHost> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment