Last active
August 29, 2015 14:07
-
-
Save nahakiole/52020dbbe7df4d93f76a to your computer and use it in GitHub Desktop.
Dynamic Virtual Host 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 *> | |
UseCanonicalName Off | |
ServerAlias * | |
VirtualDocumentRoot /home/robin/Web/%0 | |
VirtualScriptAlias /home/robin/Web/%0 | |
<Directory /home/robin/Web/> | |
Options Indexes FollowSymLinks | |
AllowOverride All | |
Order Allow,Deny | |
Allow from all | |
Satisfy Any | |
Require local | |
</Directory> | |
</VirtualHost> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment