From: Quentin Smith Date: Sun, 9 Aug 2009 22:45:20 +0000 (-0400) Subject: Mount static resources so they can be accessed via CherryPy X-Git-Tag: 0.1.0^2~74 X-Git-Url: http://xvm.mit.edu/gitweb/invirt/packages/invirt-web.git/commitdiff_plain/7f4f8200d61d0b41559f32c1f705cbd33c64f0c7 Mount static resources so they can be accessed via CherryPy svn path=/package_branches/invirt-web/cherrypy-rebased/; revision=2661 --- diff --git a/code/main.fcgi b/code/main.fcgi index ac34a64..6d5543e 100755 --- a/code/main.fcgi +++ b/code/main.fcgi @@ -10,12 +10,19 @@ dev = False base_dir = os.path.dirname(__file__) if __name__=="__main__": + static_dir = os.path.join(base_dir, 'static') + if len(sys.argv) > 1: conf_file = sys.argv[1] dev = True else: conf_file = os.path.join(base_dir, 'main.conf') - app = cherrypy.tree.mount(InvirtWeb(), '/' if dev else '/main.fcgi') + app = cherrypy.tree.mount(InvirtWeb(), + '/' if dev else '/main.fcgi', + {'/': {'tools.staticdir.root': static_dir}, + '/static': {'tools.staticdir.on': True, + 'tools.staticdir.dir': static_dir} + }) app.merge(conf_file) cherrypy.config.update(conf_file)