Created
February 6, 2015 17:55
-
-
Save thefrosty/b2461874f91823fa50b3 to your computer and use it in GitHub Desktop.
Localhost Wildcard Subdomains
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> | |
DocumentRoot "/Users/austinpassy/Documents/Websites/thefrosty.net/html" | |
ServerName thefrosty.dev | |
ServerAlias thefrosty.dev *.thefrosty.dev | |
<Directory "/Users/austinpassy/Documents/Websites/thefrosty.net/html"> | |
Options Indexes FollowSymLinks ExecCGI Includes | |
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