Send Cache-Control headers by default
authorSteven Barth <steven@midlink.org>
Sat, 19 Jul 2008 16:20:00 +0000 (16:20 +0000)
committerSteven Barth <steven@midlink.org>
Sat, 19 Jul 2008 16:20:00 +0000 (16:20 +0000)
libs/web/luasrc/http.lua

index 6838220..2540d08 100644 (file)
@@ -187,6 +187,10 @@ function write(content, src_err)
                        if not context.headers or not context.headers["content-type"] then
                                header("Content-Type", "text/html; charset=utf-8")
                        end
+                       if not context.headers["cache-control"] then
+                               header("Cache-Control", "no-cache")
+                       end
+                       
                        
                        context.eoh = true
                        coroutine.yield(3)