Created
October 12, 2012 11:52
-
-
Save cyppan/3878866 to your computer and use it in GitHub Desktop.
Apache virtual host
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> | |
ServerName jobeet2.lcl | |
DocumentRoot /var/www/jobeet2/web | |
<Directory /var/www/jobeet2/web> | |
Options -Indexes -MultiViews +FollowSymLinks | |
AllowOverride None | |
Order allow, deny | |
Allow from all | |
</Directory> | |
ErrorLog ${APACHE_LOG_DIR}/jobeet2-error.log | |
LogLevel warn | |
CustomLog ${APACHE_LOG_DIR}/jobeet2-access.log combined | |
</VirtualHost> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment