Deploy Python Falcon app with Apache2
问题 I have developed an api using falcon framework (v1.0). Now, I want to deploy this api on apache2 server with mod_wsgi at amazon EC2 instance. I'm running my app using wsgiref package on EC2 server. import falcon from wsgiref import simple_server api = app = falcon.API() class Resource(object): def on_get(self, req, resp): print("i was here :(") if 'fields' in req.params: print(req.params['fields']) print(len(req.params['fields'])) print(type(req.params['fields'])) res = Resource() api.add