Skip to content

Instantly share code, notes, and snippets.

@neverything
Forked from gistwebdev/template
Last active December 30, 2015 12:09
Show Gist options
  • Save neverything/7827193 to your computer and use it in GitHub Desktop.
Save neverything/7827193 to your computer and use it in GitHub Desktop.
<VirtualHost *:80>
ServerAdmin template.email
DocumentRoot template.webroot
ServerName template.url
ErrorLog "/private/var/log/apache2/template.name-error_log"
CustomLog "/private/var/log/apache2/template.name-access_log" common
<Directory template.webroot>
Options Includes FollowSymLinks ExecCGI
AllowOverride All
Order allow,deny
Allow from All
php_value show_errors "On"
php_value error_reporting "E_ALL"
</Directory>
</VirtualHost>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment