Skip to content

Instantly share code, notes, and snippets.

@drewlesueur
Created November 8, 2010 19:44
Show Gist options
  • Select an option

  • Save drewlesueur/668156 to your computer and use it in GitHub Desktop.

Select an option

Save drewlesueur/668156 to your computer and use it in GitHub Desktop.
infinite subdomains
#allows you to have infinite subdomains
<VirtualHost *:80>
# first do a2enmod vhost_alias
ServerName anything.the.tl
ServerAlias *.the.tl
UseCanonicalName Off
VirtualDocumentRoot /root/workspace/sites/%0 # %0 is the full domain name
</VirtualHost>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment