Skip to content

Instantly share code, notes, and snippets.

@spp
Created May 24, 2010 13:56
Show Gist options
  • Save spp/411892 to your computer and use it in GitHub Desktop.
Save spp/411892 to your computer and use it in GitHub Desktop.
<VirtualHost *:80>
ServerName www.yourhost.com
# be sure to point to 'public'!
DocumentRoot /somewhere/public
<Directory /somewhere/public>
# relax Apache security settings
# This step can achieved in a number of different steps
AllowOverride all
# MultiViews must be turned off
Options -MultiViews
</Directory>
</VirtualHost>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment