Skip to content

Instantly share code, notes, and snippets.

@marioangulo
Created April 21, 2014 21:17
Show Gist options
  • Save marioangulo/1df241a080015285f1f2 to your computer and use it in GitHub Desktop.
Save marioangulo/1df241a080015285f1f2 to your computer and use it in GitHub Desktop.
httpd base example
<VirtualHost *:80>
ServerName example.com
DocumentRoot /var/www/domains/example.com/html
ErrorLog /var/www/domains/example.com/apache.error.log
CustomLog /var/www/domains/example.com/apache.access.log common
php_flag log_errors on
php_flag display_errors on
php_value error_reporting 30719
php_value error_log /var/www/domains/example.com/php.error.log
</VirtualHost>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment