Created
June 28, 2013 18:21
-
-
Save mshmsh5000/5886842 to your computer and use it in GitHub Desktop.
Vagrant vhost with xhprof, mod_rewrite log options
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 *: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