Change the folder permission of Site, Dropbox, Dropbox/www to "Read & Write" for all the users
Last active
December 10, 2015 13:48
-
-
Save electricg/4442823 to your computer and use it in GitHub Desktop.
Apache virtual hosts
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