Skip to content

Instantly share code, notes, and snippets.

@ofus
Created March 30, 2012 15:19
Show Gist options
  • Save ofus/2252235 to your computer and use it in GitHub Desktop.
Save ofus/2252235 to your computer and use it in GitHub Desktop.
Apache Virtual Hosts with wildcard subdomain matching
UseCanonicalName Off
<VirtualHost *:80>
ServerAdmin nobody@example.com
ServerAlias *.example.com
VirtualDocumentRoot /var/www/%1/public
DirectoryIndex index.php index.htm index.html
<Directory /var/www/*/public/>
AllowOverride All
</Directory>
LogFormat "%V %h %l %u %t \"%r\" %s %b" vcommon
CustomLog /var/log/apache2/vhosts-access.log vcommon
ErrorLog /var/log/apache2/vhosts-error.log
</VirtualHost>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment