I've created a Python web app using CherryPy, and have deployed in on my local machine.
When I try to view it from another computer in the house, nothing comes back.
However, if I create a simple html file, and deploy it with:
$ python -m SimpleHTTPServer
It is visible over the intranet.
I'm stumped as to why my app could work locally, but not be avalable over the intranet, given that there is not a connection problem between these machines, and that I can serve other content on the same port.
I have not used a configuration file, I'm using the default CherryPy settings.