Skip to content

Instantly share code, notes, and snippets.

@thefrosty
Created February 6, 2015 17:55
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save thefrosty/b2461874f91823fa50b3 to your computer and use it in GitHub Desktop.
Save thefrosty/b2461874f91823fa50b3 to your computer and use it in GitHub Desktop.
Localhost Wildcard Subdomains
<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