Created
August 3, 2014 02:53
-
-
Save dpup/b1984dad53ab03d5b885 to your computer and use it in GitHub Desktop.
Simple apache config
This file contains hidden or 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 [email protected] | |
DocumentRoot /var/www/site | |
<Directory /var/www/site/> | |
Options Indexes FollowSymLinks MultiViews | |
AllowOverride All | |
Order deny,allow | |
Allow from all | |
</Directory> | |
ErrorLog ${APACHE_LOG_DIR}/error.log | |
CustomLog ${APACHE_LOG_DIR}/access.log combined | |
</VirtualHost> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment