In /etc/apache2/sites-available/default I made the /home/me/www folder my localhost location. I have downloaded Drupal into the new www/drupal folder and even though I gave all permissions (777) Apache still can't write to it. Do I need to make another permission change?
TO make localhost not 403, I followed the steps in: http://askubuntu.com/a/232078/25656
sudo apt-get install acl
You can use man setfacl to have more info.To add permissions to Apache:
sudo setfacl -m d:g:www-data:X,g:www-data:X /home/me
sudo setfacl -m d:g:www-data:X,g:www-data:X /home/me/Dropbox
sudo setfacl -Rm d:g:www-data:rX,g:www-data:rX /home/me/Dropbox/Web`
/etc/apache2/sites-available/default → http://paste.ubuntu.com/1534943/.

/etc/apache2/sites-available/default? What doesls -l /etc/apache2/sites-enabled/show` – qbi Jan 15 at 16:56