Here is how I shared a directory on a web sever so that people could simply download some files. I made a change to the /etc/apache2/sites-available/default file, which is actually the exact same file as the /etc/apache2/sites-enabled/default file. The file in the sites-enabled folder is just a symbolic link to the sites-available file. It is done this way so that one can simply run the a2ensite to enable the site or a2dissite to disable the site or course followed by an apache restart with the command "service apache2 restart." a2ensite and a2dissite can be though of as apache2enablesite and apache2disablesite. so, as I was saying. In the /etc/apache2/sites-available/default file I added the following within the section:

    Alias /publicFiles/ "/home/tory/publicFiles"
    <Directory "/home/tory/publicFiles">
           Options Indexes MultiViews FollowSymLinks
               AllowOverride None
               Order deny,allow
               Deny from all
               Allow from 192.168.1.0/24
    </Directory>

This will only allow people on my local network to access the file via the address http://myServer/publicFiles/. When people go there they will be greeted with a plain file listing. Within the folder /home/tory/publicFiles I did things like:

 $ ln -s /mnt/coolDrive/coolFileToShare.jpg heySisterCheckThisOut.jpg

and of course all files need the proper permissions.... and no, that does not mean it is time to whip out the chmod 777 * -R ... lol