如何从NGINX中的请求标头中删除X-Frame-Options SAMEORIGIN标头?

时间:2019-11-13 14:14:00

标签: amazon-web-services google-chrome nginx iframe amazon-ec2

enter image description here

你好,每个人我都需要从请求标头中删除 X-Frame-Options SAMEORIGIN 标头。我使用nginx服务器,所有设置都在AWS中。

我尝试使用以下解决方案,但对我不起作用。

proxy_hide_header 'x-frame-options';

我遇到了类似的错误。

enter image description here

1 个答案:

答案 0 :(得分:0)

我认为开箱即用的nginx构建无法做到这一点。此外,proxy_hide_header指令用于从上游(而不是从客户端浏览器)隐藏标头。解决方案之一是使用ngx_headers_more模块中的more_clear_headers指令,但是为此,您需要从源代码构建nginx(或使用OpenResty)。