Skip to content

Instantly share code, notes, and snippets.

@simtabi
Forked from ofus/vhost-wildcard-subdomain.conf
Created November 13, 2021 13:01
Show Gist options
  • Save simtabi/875e0b883760910fef0ed7363b9c4cda to your computer and use it in GitHub Desktop.
Save simtabi/875e0b883760910fef0ed7363b9c4cda 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