Unauthenticated front page
[invirt/packages/invirt-web.git] / code / main.fcgi
index cd10538..6f3ed99 100755 (executable)
@@ -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__)
@@ -25,6 +25,10 @@ if __name__=="__main__":
                     '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()