Skip to content

Instantly share code, notes, and snippets.

@mshmsh5000
Created June 28, 2013 18:21
Show Gist options
  • Save mshmsh5000/5886842 to your computer and use it in GitHub Desktop.
Save mshmsh5000/5886842 to your computer and use it in GitHub Desktop.
Vagrant vhost with xhprof, mod_rewrite log options
<VirtualHost *:8888>
ServerAdmin webmaster@localhost
DocumentRoot /vagrant
<Directory />
Options FollowSymLinks
AllowOverride None
</Directory>
<Directory /vagrant/>
Options Indexes FollowSymLinks MultiViews
AllowOverride All
Order allow,deny
allow from all
</Directory>
# Uncomment to use xhprof with Drupal (or anything else)
#Alias /xhprof_html /usr/share/php/xhprof_html/
#<Directory "/usr/share/php/xhprof_html/">
# Options FollowSymLinks
# AllowOverride All
# Order allow,deny
# Allow from all
#</Directory>
ErrorLog ${APACHE_LOG_DIR}/error.log
# Possible values include: debug, info, notice, warn, error, crit,
# alert, emerg.
LogLevel warn
CustomLog ${APACHE_LOG_DIR}/access.log combined
# mod_rewrite log
RewriteLog /var/log/apache2/rewrite.log
RewriteLogLevel 3
</VirtualHost>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment