source: package_branches/invirt-web/cherrypy-rebased/code/main.fcgi @ 2661

Last change on this file since 2661 was 2661, checked in by broder, 14 years ago

Mount static resources so they can be accessed via CherryPy?

  • Property svn:executable set to *
File size: 990 bytes
Line 
1#!/usr/bin/python
2"""Main FastCGI entry point for web interface"""
3
4import cherrypy
5import os
6import sys
7from main import InvirtWeb
8
9dev = False
10base_dir = os.path.dirname(__file__)
11
12if __name__=="__main__":
13    static_dir = os.path.join(base_dir, 'static')
14
15    if len(sys.argv) > 1:
16        conf_file = sys.argv[1]
17        dev = True
18    else:
19        conf_file = os.path.join(base_dir, 'main.conf')
20    app = cherrypy.tree.mount(InvirtWeb(),
21        '/' if dev else '/main.fcgi',
22        {'/':      {'tools.staticdir.root': static_dir},
23        '/static': {'tools.staticdir.on': True,
24                    'tools.staticdir.dir': static_dir}
25         })
26    app.merge(conf_file)
27    cherrypy.config.update(conf_file)
28
29    if dev:
30        cherrypy.server.quickstart()
31        cherrypy.engine.start()
32        cherrypy.engine.block()
33    else:
34        cherrypy.engine.start(blocking=False)
35        from flup.server.fcgi import WSGIServer
36        server = WSGIServer(app)
37        server.run()
Note: See TracBrowser for help on using the repository browser.