Skip to content

Instantly share code, notes, and snippets.

@corycollier
Created December 9, 2013 18:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save corycollier/7878336 to your computer and use it in GitHub Desktop.
Save corycollier/7878336 to your computer and use it in GitHub Desktop.
<VirtualHost *:80>
ServerName extranet.dev.ezyield.com
DirectoryIndex index.php
DefaultType text/html
DocumentRoot /Users/ccollier/Sites/extranet.ezyield.com/public
LogLevel debug
ErrorLog /Users/ccollier/Sites/extranet.ezyield.com/log/httpd-errors.log
CustomLog /Users/ccollier/Sites/extranet.ezyield.com/log/httpd-access.log combined
<Directory /Users/ccollier/Sites/extranet.ezyield.com/public/>
Options All
AllowOverride All
Allow From All
Order allow,deny
</Directory>
<IfModule mod_php5.c>
php_flag display_errors On
php_flag html_errors On
php_flag log_errors On
php_flag track_errors On
php_value error_log /Users/ccollier/Sites/extranet.ezyield.com/log/php-errors.log
</IfModule>
<IfModule mod_env.c>
SetEnv APPLICATION_ENV "development"
</IfModule>
</VirtualHost>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment