Index: package_branches/invirt-web/cherrypy/code/main.fcgi
===================================================================
--- package_branches/invirt-web/cherrypy/code/main.fcgi	(revision 2386)
+++ package_branches/invirt-web/cherrypy/code/main.fcgi	(revision 2387)
@@ -11,4 +11,6 @@
 
 if __name__=="__main__":
+    static_dir = os.path.join(base_dir, 'static')
+
     if len(sys.argv) > 1:
         conf_file = sys.argv[1]
@@ -16,5 +18,10 @@
     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)
