Last active
September 29, 2015 22:08
-
-
Save matteocaberlotto/1675929 to your computer and use it in GitHub Desktop.
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 *> | |
ServerName versace.dev | |
DocumentRoot "/Users/teito/workspace/versace/web" | |
DirectoryIndex index.php | |
Alias /sf /Users/teito/workspace/versace/lib/vendor/symfony/data/web/sf/ | |
<Directory "/Users/teito/workspace/versace/lib/vendor/symfony/data/web/sf"> | |
AllowOverride All | |
#Allow from All | |
Allow from 127.0.0.1 ::1 | |
</Directory> | |
<Directory "/Users/teito/workspace/versace/web"> | |
AllowOverride All | |
# Allow from All | |
Allow from 127.0.0.1 ::1 | |
</Directory> | |
# SetEnv HART_APP_ENV dev | |
# SetEnv HART_APP_DEBUG true | |
<DirectoryMatch .*\.svn> | |
Order allow,deny | |
Deny from all | |
Satisfy All | |
</DirectoryMatch> | |
</VirtualHost> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment