Created
November 29, 2014 10:24
-
-
Save od3n/e0dddb13fed736f6872d to your computer and use it in GitHub Desktop.
Symfony2 Apache configuration
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> | |
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