if you are using Visual Studio 2010 then you can use the IIS Express, witch is a FULL IIS that puts Cassini on it's knees. Microsoft strongly suggest that we, developers, stop using Cassini as our web server for debugging.
IIS Express let's you not only take the full advantages of ISS such as SSL, but enable full access for any machine on your local network, acting on port 80 or any other you would like.
First: I would like to point out the MIX Video from Scott Hanselmen about this, see this video to enlarge your knowladge on IIS Express (IIS Express starts on 32:50)
Second: After you installed VS2010 SP1 and MVC 3 Tools Update (you can update both using Web Platform Installer) right click on your project and choose "Use IIS Express", and with this (instead Cassini) you can access your debug site from any machine on your localhost.

Now you just need make IIS Express to run on port 80. And for that, nothing better than read Scott Blog on it. It's about running IIS Express on port 80 as well run SSL on your dev machine/site so, just grab the bits on port 80 part :)
Hope it helps.