index.fcgi
changeset 140 6db2527b67cf
parent 139 9c7769850195
child 141 65c98c9e1716
--- a/index.fcgi	Sun Sep 13 00:49:55 2009 +0300
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,26 +0,0 @@
-#!/usr/bin/python2.5
-# :set filetype=py
-
-"""
-    FastCGI mode using qmsk.web.fastcgi_main
-"""
-
-from qmsk.web import fastcgi_main
-
-# XXX: error handling for imports? Lighttp sucks hard at this
-import wsgi
-
-def main () :
-    """
-        Build our WSGIApplication and run
-    """
-
-    # create app
-    app = wsgi.Application()
-
-    # run once
-    fastcgi_main.run(app)
-
-if __name__ == '__main__' :
-    main()
-