Python (CherryPy) web app deployed locally, but not visible over intranet Python (CherryPy) web app deployed locally, but not visible over intranet python python

Python (CherryPy) web app deployed locally, but not visible over intranet


The default settings likely bind to localhost, which is not publicly available. If you want CherryPy to run on a public interface, you'll have to direct it to do that. From this discussion I found:

cherrypy.config.update(    {'server.socket_host': '10.149.4.240' } ) # Pub IPcherrypy.quickstart()

or

cherrypy.config.update(    {'server.socket_host': '0.0.0.0'} )      cherrypy.quickstart()

To bind to all interfaces.