Skip to content

Instantly share code, notes, and snippets.

@benuski
Created February 22, 2016 17:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save benuski/e3c9a3571ccc1f4095ae to your computer and use it in GitHub Desktop.
Save benuski/e3c9a3571ccc1f4095ae to your computer and use it in GitHub Desktop.
<VirtualHost *:80>
ServerAdmin your@emailaddress.org
ServerName yoursitename.org
ServerAlias www.yoursitename.org
DocumentRoot /var/www/yoursitename.org
<Directory />
Options FollowSymLinks
AllowOverride None
</Directory>
<Directory /var/www/yoursitename.org>
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