2 """Main FastCGI entry point for web interface"""
7 from main import InvirtWeb
10 base_dir = os.path.dirname(__file__)
12 if __name__=="__main__":
13 static_dir = os.path.join(base_dir, 'static')
16 conf_file = sys.argv[1]
19 conf_file = os.path.join(base_dir, 'main.conf')
20 app = cherrypy.tree.mount(InvirtWeb(),
22 {'/': {'tools.staticdir.root': static_dir,
23 'tools.invirtwebstate.on': True},
24 '/static': {'tools.staticdir.on': True,
25 'tools.staticdir.dir': static_dir}
28 cherrypy.config.update(conf_file)
31 cherrypy.server.quickstart()
32 cherrypy.engine.start()
33 cherrypy.engine.block()
35 cherrypy.engine.start(blocking=False)
36 from flup.server.fcgi import WSGIServer
37 server = WSGIServer(app)