Created
July 1, 2014 21:10
-
-
Save harunyardimci/30a4e7f4d0436f6a2f46 to your computer and use it in GitHub Desktop.
Dynamic apache virtual host configuration
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 *.*.*.local.dev | |
| SetEnv APPLICATION_ENV "development" | |
| VirtualDocumentRoot /var/www/some_path/%1/%2/public/%3 | |
| <Directory "/var/www/developers_repo_path/*/*"> | |
| Options FollowSymLinks MultiViews | |
| AllowOverride All | |
| Order allow,deny | |
| Allow from all | |
| </Directory> | |
| </VirtualHost> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment