Files
uwsgi/staticfile.py
T
2010-02-10 17:28:58 +01:00

5 lines
181 B
Python

def application(environ, start_response):
start_response('200 OK', [('Content-Type', 'image/png')])
fd = open('logo_uWSGI.png','r')
return environ['wsgi.file_wrapper'](fd, 4096)