Created
February 15, 2018 15:15
-
-
Save andrinheusser/2309ee3f00d289fe7152fb19e3b9c8aa to your computer and use it in GitHub Desktop.
Apache VHosts Wildcard
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> | |
UseCanonicalName Off | |
ServerAlias *.devel | |
VirtualDocumentRoot "C:/Projects/%-3/public" | |
<Directory "C:/Projects/*/"> | |
LogLevel debug | |
Require all granted | |
AllowOverride All | |
Options Indexes FollowSymLinks | |
</Directory> | |
</VirtualHost> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment