Skip to content

Instantly share code, notes, and snippets.

@edgebal
Created April 3, 2014 16:24
Show Gist options
  • Save edgebal/9957703 to your computer and use it in GitHub Desktop.
Save edgebal/9957703 to your computer and use it in GitHub Desktop.
Virtualhosts templates
<VirtualHost *:80>
ServerName cakeproject.local.host
DocumentRoot /var/www/cakeproject/app/webroot
<Directory /var/www/cakeproject>
AllowOverride all
Options -MultiViews
</Directory>
</VirtualHost>
<VirtualHost *:80>
ServerName project.local.host
DocumentRoot /var/www/project
<Directory /var/www/project>
AllowOverride all
Options -MultiViews
</Directory>
</VirtualHost>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment