Send Cache-Control headers by default
[project/luci.git] / libs / web / luasrc / http.lua
index 6838220ce8a8163b4c74f6d382b2611911802680..2540d08a312a187c62a0c7ef088f3d6689befab5 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)