I have a cherokee serving django app using uWSGI.
I want the uwsgi process user and group to be specified by me - how do I do this?
(now uwsgi runs as 'www-data' user)
i use modified webapp.RequestHandler for handling requests in my app:
class MyRequestHandler(webapp.RequestHandler):
"""
Request handler with some facilities like user.
self.out is the dictionary to pass to templates
"""
def __init__(self, *args, **kwargs):
super(MyRequestHandler, self).__init__(*args, **kwargs)
…