From 318fb2576178a56589c791e122aa871b155d16ae Mon Sep 17 00:00:00 2001 From: shlande <shlandeme@gmail.com> Date: Thu, 9 Jun 2022 09:48:03 +0800 Subject: [PATCH] web: enable `ETag` to improve loading speed of static resources (#7035) Co-authored-by: shlande <shlandeme@icloud.com> --- internal/cmd/web.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/internal/cmd/web.go b/internal/cmd/web.go index 4356d5b82..42e4e0650 100644 --- a/internal/cmd/web.go +++ b/internal/cmd/web.go @@ -89,6 +89,7 @@ func newMacaron() *macaron.Macaron { m.Use(macaron.Static( filepath.Join(conf.WorkDir(), "public"), macaron.StaticOptions{ + ETag: true, SkipLogging: conf.Server.DisableRouterLog, FileSystem: publicFs, }, @@ -97,6 +98,7 @@ func newMacaron() *macaron.Macaron { m.Use(macaron.Static( conf.Picture.AvatarUploadPath, macaron.StaticOptions{ + ETag: true, Prefix: db.USER_AVATAR_URL_PREFIX, SkipLogging: conf.Server.DisableRouterLog, }, @@ -104,6 +106,7 @@ func newMacaron() *macaron.Macaron { m.Use(macaron.Static( conf.Picture.RepositoryAvatarUploadPath, macaron.StaticOptions{ + ETag: true, Prefix: db.REPO_AVATAR_URL_PREFIX, SkipLogging: conf.Server.DisableRouterLog, },