Skip to content

Instantly share code, notes, and snippets.

@dantoncancella
Created January 18, 2013 12:53
Show Gist options
  • Save dantoncancella/4564377 to your computer and use it in GitHub Desktop.
Save dantoncancella/4564377 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