Skip to content

Instantly share code, notes, and snippets.

@joshuapekera
Forked from electricg/about.md
Created June 22, 2013 19:49
Show Gist options
  • Save joshuapekera/5842341 to your computer and use it in GitHub Desktop.
Save joshuapekera/5842341 to your computer and use it in GitHub Desktop.

Change the folder permission of Site, Dropbox, Dropbox/www to "Read & Write" for all the users

# Webserver
127.0.0.1 giugee.dev www.giugee.dev
127.0.0.1 drop.dev www.drop.dev
<VirtualHost *:80>
ServerName giugee.dev
DocumentRoot "/Users/electric_g/Sites"
ServerAlias www.giugee.dev
</VirtualHost>
<Directory /Users/*/Sites/>
Options Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI MultiViews
AllowOverride All
Order allow,deny
Allow from all
</Directory>
<VirtualHost *:80>
ServerName drop.dev
DocumentRoot "/Users/electric_g/Dropbox/www"
ServerAlias www.drop.dev
</VirtualHost>
<Directory /Users/electric_g/Dropbox/>
Options Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI MultiViews
AllowOverride All
Order allow,deny
Allow from all
</Directory>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment