Skip to content

Instantly share code, notes, and snippets.

@lucasmezencio
Created November 5, 2012 00:54
Show Gist options
  • Save lucasmezencio/4014616 to your computer and use it in GitHub Desktop.
Save lucasmezencio/4014616 to your computer and use it in GitHub Desktop.
Default Vhost
<VirtualHost *:80>
ServerName example.local
DocumentRoot /path/to/example/public
SetEnv APPLICATION_ENV "development"
<Directory /path/to/example/public>
DirectoryIndex index.php
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