If you'd like to have apache listen on a port other than the default (port 80), you can do the following:
Edit ports.conf
nano /etc/apache2/ports.conf
Add a Listen directive
Listen 80
Listen 8000
This will tell apache to listen on both port 80 and port 8000.
Restart Apache
/etc/init.d/apache2 restart