diff --git a/hello_world.py b/hello_world.py new file mode 100644 index 00000000..9509c649 --- /dev/null +++ b/hello_world.py @@ -0,0 +1,5 @@ +import uwsgi +uwsgi.cache_set('/', "HTTP/1.1 200 OK\r\nContent-Type: text/html\r\n\r\nHello World from cache") +def application(env, start_response): + start_response('200 OK', [('Content-Type', 'text/html')]) + return "