Skip to content

Instantly share code, notes, and snippets.

@pedro-stanaka
Created December 6, 2013 21:47
Show Gist options
  • Save pedro-stanaka/7832670 to your computer and use it in GitHub Desktop.
Save pedro-stanaka/7832670 to your computer and use it in GitHub Desktop.
VHOST FOR CAKE BLOG
<VirtualHost *:80>
ServerName blog.local
ServerAdmin pedro.tanaka@sinetic.com.br
DocumentRoot /var/www/repos/blog.cake
<Directory />
Options FollowSymLinks
AllowOverride All
</Directory>
<Directory /var/www/repos/blog.cake>
Options Indexes FollowSymLinks MultiViews
AllowOverride All
Order Allow,Deny
Allow from all
</Directory>
</VirtualHost>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment