diff --git a/.idea/workspace.xml b/.idea/workspace.xml
index 08ff162..5d8a8da 100644
--- a/.idea/workspace.xml
+++ b/.idea/workspace.xml
@@ -4,7 +4,9 @@
-
+
+
+
@@ -24,11 +26,9 @@
-
-
-
-
-
+
+
+
@@ -46,8 +46,8 @@
-
-
+
+
@@ -105,16 +105,6 @@
-
-
-
-
-
-
-
-
-
-
@@ -130,8 +120,8 @@
@@ -198,6 +188,7 @@
+
@@ -211,7 +202,7 @@
-
+
@@ -231,6 +222,10 @@
+
+
+
+
@@ -248,12 +243,6 @@
-
-
-
-
-
-
@@ -264,10 +253,6 @@
-
-
-
-
@@ -476,6 +461,8 @@
+
+
1500458878821
@@ -705,7 +692,7 @@
-
+
@@ -717,8 +704,7 @@
-
-
+
@@ -726,12 +712,12 @@
-
+
-
+
@@ -771,21 +757,11 @@
-
-
-
-
-
-
-
-
-
-
-
+
@@ -793,7 +769,6 @@
-
@@ -843,7 +818,6 @@
-
@@ -859,7 +833,6 @@
-
@@ -867,9 +840,7 @@
-
-
-
+
@@ -884,7 +855,6 @@
-
@@ -948,9 +918,7 @@
-
-
-
+
@@ -958,7 +926,6 @@
-
@@ -1029,9 +996,7 @@
-
-
-
+
@@ -1047,9 +1012,7 @@
-
-
-
+
@@ -1088,7 +1051,6 @@
-
@@ -1096,7 +1058,6 @@
-
@@ -1104,7 +1065,6 @@
-
@@ -1168,19 +1128,18 @@
-
-
+
+
+
-
-
-
-
-
+
+
+
diff --git a/application.go b/application.go
index a6cc7ea..daa2137 100644
--- a/application.go
+++ b/application.go
@@ -302,8 +302,10 @@ func (this *Application) handler(w http.ResponseWriter, req *http.Request) {
if value, ok := mimeMaps[mimeStr]; ok {
header.Set("Content-Type", value)
}
+ if this.Config.GetInt("debug")!=1{
+ header.Set("Cache-Control", "public")
+ }
- header.Set("Cache-Control", "public")
//w.Write(data)
http.ServeFile(w, req, path)
diff --git a/var.go b/var.go
index 5dcac6c..91dc555 100644
--- a/var.go
+++ b/var.go
@@ -21,4 +21,5 @@ var Config = Map{
"cacheLongTime": 60 * 60 * 24 * 30,
"sessionName": "HOTIME",
"error": Map{},
+ "debug":1,//debug 0关闭1开启
}