-
-
Save neverything/7827193 to your computer and use it in GitHub Desktop.
This file contains 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 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