X-Git-Url: http://xvm.mit.edu/gitweb/invirt/packages/invirt-web.git/blobdiff_plain/bfdba2e4f73fced5d2d37b1351016168883e996b..4372685b99ad4da8d734ad20a65ba693654d746e:/code/main.fcgi diff --git a/code/main.fcgi b/code/main.fcgi index 03f899c..6f3ed99 100755 --- a/code/main.fcgi +++ b/code/main.fcgi @@ -4,7 +4,7 @@ import cherrypy import os import sys -from main import InvirtWeb +from main import InvirtWeb, InvirtUnauthWeb dev = False base_dir = os.path.dirname(__file__) @@ -18,13 +18,17 @@ if __name__=="__main__": else: conf_file = os.path.join(base_dir, 'main.conf') app = cherrypy.tree.mount(InvirtWeb(), - '/' if dev else '/main.fcgi', + '/', {'/': {'tools.staticdir.root': static_dir, 'tools.invirtwebstate.on': True}, '/static': {'tools.staticdir.on': True, 'tools.staticdir.dir': static_dir} }) app.merge(conf_file) + unauthApp = cherrypy.tree.mount(InvirtUnauthWeb(), + '/unauth', + {'/': {'tools.invirtwebstate.on': True}}) + unauthApp.merge(conf_file) cherrypy.config.update(conf_file) if dev: @@ -34,5 +38,5 @@ if __name__=="__main__": else: cherrypy.engine.start(blocking=False) from flup.server.fcgi import WSGIServer - server = WSGIServer(app) + server = WSGIServer(cherrypy.tree) server.run()