Skip to content

Instantly share code, notes, and snippets.

@od3n
Created November 29, 2014 10:24
Show Gist options
  • Save od3n/e0dddb13fed736f6872d to your computer and use it in GitHub Desktop.
Save od3n/e0dddb13fed736f6872d to your computer and use it in GitHub Desktop.
Symfony2 Apache configuration
<VirtualHost *:80>
ServerAdmin webmaster@localhost
DocumentRoot /symfony/public
DirectoryIndex app_dev.php
ErrorLog /var/log/apache2/default-error_log
CustomLog /var/log/apache2/default-access_log common
<Directory /symfony/public>
AllowOverride All
require all granted
</Directory>
</VirtualHost>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment