Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save ekapujiw2002/07415d232b7f836870d2 to your computer and use it in GitHub Desktop.
Save ekapujiw2002/07415d232b7f836870d2 to your computer and use it in GitHub Desktop.
Apache Virtual Hosts with wildcard subdomain matching
UseCanonicalName Off
<VirtualHost *:80>
ServerAdmin [email protected]
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