- Added Server Configuration settings page (backend + frontend) - Added .env config download/import API - Runtime config updates via UI - Support for all 3 themes (default, air, berry) - i18n support (zh/en)
17 lines
293 B
Go
17 lines
293 B
Go
package middleware
|
|
|
|
import (
|
|
"github.com/gin-gonic/gin"
|
|
)
|
|
|
|
func Cache() func(c *gin.Context) {
|
|
return func(c *gin.Context) {
|
|
if c.Request.RequestURI == "/" {
|
|
c.Header("Cache-Control", "no-cache")
|
|
} else {
|
|
c.Header("Cache-Control", "max-age=604800") // one week
|
|
}
|
|
c.Next()
|
|
}
|
|
}
|