#!/usr/bin/python3 from flup.server.fcgi import WSGIServer from rpiWebApp import app import logging if __name__ == '__main__': app.debug = True logging.basicConfig(filename="app.log", format="%(levelname)s:%(name)s:%(message)s") WSGIServer(app, bindAddress='/run/matt/rpiWebApp/fcgi.sock').run()