Created
March 18, 2013 15:06
-
-
Save chibani/5187809 to your computer and use it in GitHub Desktop.
Exemple d'utilisation du mod_alias et des VirtualDocumentRoot pour configurer facilement une machine de dev
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> | |
ServerName www.loicg.dev.com | |
ServerAlias *.*.dev.com | |
VirtualDocumentRoot /home/web/workspace/%2/%1 | |
<Directory /> | |
Options Indexes FollowSymLinks MultiViews | |
AllowOverride All | |
</Directory> | |
</VirtualHost> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment