Hi there,
You should be able to do this by adding a few lines to your httpd.conf file. To do this you'll need to issue a few terminal commands:
Open a new terminal & type
<pre>cd /etc/httpd/
sudo cp httpd.conf httpd.conf.before_music
sudo pico /etc/httpd/httpd.conf</pre>
Type your password when asked
Use Ctrl-Y to page to the line that reads <pre><Directory "/Library/WebServer/Documents"></pre>
after the following <pre></Directory></pre> line, insert the following, replacing 'mrwalker' with your OS X short username:
<pre>
Alias /music "/Users/mrwalker/Music/"
<Directory "/Users/mrwalker/Music/">
Options Indexes MultiViews
AllowOverride all
Order allow,deny
Allow from all
</Directory>
</pre>
Then save the file with Ctrl-O, Enter. Exit the pico editor with Ctrl-X.
Finally, restart apache with <pre>sudo apachectl restart</pre>
Your music should be accesible at
http://127.0.0.1/music
-mrwalker