Problems serving static files in CherryPy 3.1
I'm having some trouble serving a static XML stylesheet to accompany some dynamically generated output from a CherryPy web app. Even my test case serving a static text file fails. Static file blah.txt is in the /static directory in my application root directory. In my main site file (conesearch.py contains the CherryPy ConeSearch page-handler class): import conesearch cherrypy.config.update('site.config') cherrypy.tree.mount(conesearch.ConeSearch(), "/ucac3", 'ucac3.config') ... And in site.config I have the following options: [/] tools.staticdir.root: conesearch.current_dir [/static] tools