1
1
mirror of https://github.com/go-gitea/gitea synced 2025-07-10 12:37:19 +00:00

Move cors.X_FRAME_OPTIONS to security.X_FRAME_OPTIONS and add false option

This commit is contained in:
silverwind
2024-04-03 01:17:38 +02:00
parent e006451ab1
commit aace6002ee
8 changed files with 19 additions and 10 deletions

View File

@ -235,7 +235,10 @@ func APIContexter() func(http.Handler) http.Handler {
}
httpcache.SetCacheControlInHeader(ctx.Resp.Header(), 0, "no-transform")
ctx.Resp.Header().Set(`X-Frame-Options`, setting.CORSConfig.XFrameOptions)
if setting.XFrameOptions != "false" {
ctx.Resp.Header().Set(`X-Frame-Options`, setting.XFrameOptions)
}
next.ServeHTTP(ctx.Resp, ctx.Req)
})