mirror of
				https://github.com/linux-do/new-api.git
				synced 2025-11-04 21:33:41 +08:00 
			
		
		
		
	fix: add no-cache for index.html
This commit is contained in:
		@@ -6,7 +6,11 @@ import (
 | 
			
		||||
 | 
			
		||||
func Cache() func(c *gin.Context) {
 | 
			
		||||
	return func(c *gin.Context) {
 | 
			
		||||
		c.Header("Cache-Control", "max-age=604800") // one week
 | 
			
		||||
		if c.Request.RequestURI == "/" {
 | 
			
		||||
			c.Header("Cache-Control", "no-cache")
 | 
			
		||||
		} else {
 | 
			
		||||
			c.Header("Cache-Control", "max-age=604800") // one week
 | 
			
		||||
		}
 | 
			
		||||
		c.Next()
 | 
			
		||||
	}
 | 
			
		||||
}
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user