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:
@ -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)
|
||||
})
|
||||
|
Reference in New Issue
Block a user