#!/usr/bin/python3 from flup.server.fcgi import WSGIServer from rpiWebApp import app if __name__ == '__main__': app.debug = True WSGIServer(app, bindAddress='/run/rpiWebApp/fcgi.sock').run()