crytowhois/app.fcgi
2012-09-22 20:47:32 +02:00

8 lines
210 B
Python
Executable file

#!/usr/local/bin/python
from flup.server.fcgi import WSGIServer
from app import app
from werkzeug.contrib.fixers import LighttpdCGIRootFix
if __name__ == '__main__':
WSGIServer(LighttpdCGIRootFix(app)).run()