Created
August 13, 2015 19:41
-
-
Save sameg14/405cdbef9dce74043fa7 to your computer and use it in GitHub Desktop.
Apache symfony virtualhost 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> | |
ServerName symfony.vm | |
ServerAlias symfony.vm | |
DocumentRoot /var/www/symfony/web | |
<Directory /var/www/symfony/web> | |
DirectoryIndex app_dev.php | |
Options Indexes FollowSymLinks MultiViews | |
AllowOverride All | |
Order allow,deny | |
Allow from all | |
</Directory> | |
ErrorLog ${APACHE_LOG_DIR}/symfony-error.log | |
CustomLog ${APACHE_LOG_DIR}/symfony-access.log combined | |
</VirtualHost> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment