index.fcgi
author Tero Marttila <terom@fixme.fi>
Mon, 16 Feb 2009 02:55:17 +0200
changeset 136 c69a176b3620
parent 134 fbccc1648d79
permissions -rwxr-xr-x
better string truncation for error messages
#!/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()