Skip to content

Instantly share code, notes, and snippets.

@davetromp
Created September 16, 2012 19:59
Show Gist options
  • Save davetromp/3734149 to your computer and use it in GitHub Desktop.
Save davetromp/3734149 to your computer and use it in GitHub Desktop.
Virtualhost file
<VirtualHost *:80>
ServerAdmin webmaster@localhost
ServerName davetromp
DocumentRoot /home/davetromp/Lamp
<Directory />
Options FollowSymLinks
AllowOverride All
Allow from all
</Directory>
<Directory /home/davetromp/Lamp>
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