Change the folder permission of Site, Dropbox, Dropbox/www to "Read & Write" for all the users
-
-
Save joshuapekera/5842341 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Webserver | |
127.0.0.1 giugee.dev www.giugee.dev | |
127.0.0.1 drop.dev www.drop.dev |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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