Skip to content

Instantly share code, notes, and snippets.

@sameg14
Created August 13, 2015 19:41
Show Gist options
  • Save sameg14/405cdbef9dce74043fa7 to your computer and use it in GitHub Desktop.
Save sameg14/405cdbef9dce74043fa7 to your computer and use it in GitHub Desktop.
Apache symfony virtualhost config
<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