文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

怎么通过Nginx定义Header头信息

2023-07-06 02:24

关注

这篇文章主要介绍了怎么通过Nginx定义Header头信息的相关知识,内容详细易懂,操作简单快捷,具有一定借鉴价值,相信大家阅读完这篇怎么通过Nginx定义Header头信息文章都会有所收获,下面我们一起来看看吧。

通过修改nginx的conf文件,轻松达到自定义HTTP Header的目的。

Nginx 使用 ngx_headers_more 模块来增加、删除出站、入站的 Header 信息。默认该模块没有加入到 Nginx 的源码中,要想使用相关功能需要在编译 Nginx 时加入该模块。本人服务器中的 Nginx 在编译时没有加入该模块,使用 -V 查看当前 Nginx 的编译参数:

[root@z-dig ~]# nginx -Vnginx version: www.z-dig.combuilt by gcc 4.4.7 20120313 (Red Hat 4.4.7-16) (GCC)built with OpenSSL 1.0.1e-fips 11 Feb 2013TLS SNI support enabledconfigure arguments: --prefix=/usr/local/nginx --user=www --group=www \--with-http_ssl_module --with-http_stub_status_module[root@z-dig ~]#

从官网下载模块:

[root@z-dig ~]# cd /usr/local/src/[root@z-dig src]# wget 、https://codeload.github.com/openresty/headers-more-nginx-module/zip/master\ -O ./headers-more-nginx-module-master.zip[root@z-dig src]# unzip headers-more-nginx-module-master.zip

重新编译 Nginx 前,请求 www.z-dig.com 的 Header 信息:

[root@KVM ~]# curl -I www.z-dig.comHTTP/1.1 200 OKServer: www.z-dig.comDate: Sat, 23 Apr 2016 11:25:15 GMTContent-Type: text/html; charset=UTF-8Connection: keep-aliveX-Powered-By: PHP/5.6.17Vary: Accept-Encoding, CookieCache-Control: max-age=3, must-revalidateWP-Super-Cache: Served supercache file from PHP[root@KVM ~]#

现在重新编译 Nginx ,平滑更新:

[root@z-dig ~]# cd /usr/local/src/nginx[root@z-dig nginx]# make cleanrm -rf Makefile objs[root@z-dig nginx]#./configure --prefix=/usr/local/nginx --user=www --group=www \--with-http_ssl_module --with-http_stub_status_module \--add-module=/usr/local/src/headers-more-nginx-module-master[root@z-dig nginx]# make[root@z-dig nginx]# make install[root@z-dig nginx]# kill -s USR2 `cat /usr/local/nginx/logs/nginx.pid`[root@z-dig nginx]# ps -ef|grep nginxroot      2017     1  0 Apr21 ?        00:00:00 nginx: master process /usr/local/nginx/sbin/nginxwww       2018  2017  0 Apr21 ?        00:00:30 nginx: worker process     root     21717  2017  0 19:41 ?        00:00:00 nginx: master process /usr/local/nginx/sbin/nginxwww      21718 21717  0 19:41 ?        00:00:00 nginx: worker process     root     21856 18312  0 19:45 pts/2    00:00:00 grep nginx[root@z-dig nginx]# kill -s WINCH `cat /usr/local/nginx/logs/nginx.pid.oldbin`[root@z-dig nginx]# ps -ef|grep nginxroot      2017     1  0 Apr21 ?        00:00:00 nginx: master process /usr/local/nginx/sbin/nginxroot     21717  2017  0 19:41 ?        00:00:00 nginx: master process /usr/local/nginx/sbin/nginxwww      21718 21717  0 19:41 ?        00:00:00 nginx: worker process     root     21943 18312  0 19:49 pts/2    00:00:00 grep nginx[root@z-dig nginx]# kill -s QUIT `cat /usr/local/nginx/logs/nginx.pid.oldbin`[root@z-dig nginx]# ps -ef|grep nginxroot     21717     1  0 19:41 ?        00:00:00 nginx: master process /usr/local/nginx/sbin/nginxwww      21718 21717  0 19:41 ?        00:00:00 nginx: worker process     root     22050 18312  0 19:54 pts/2    00:00:00 grep nginx[root@z-dig nginx]#

到此 Nginx 已重新编译并平滑升级成功。

在 Nginx 的配置文件中加入代码,将之前请求网站返回 Header 中的 X-Powered-By 和 WP-Super-Cache 删除:

more_clear_headers 'X-Powered-By';more_clear_headers 'WP-Super-Cache';[root@z-dig ~]# nginx -tnginx: the configuration file /usr/local/nginx/conf/nginx.conf syntax is oknginx: configuration file /usr/local/nginx/conf/nginx.conf test is successful[root@z-dig ~]# nginx -s reload

再次请求查看效果:

[root@KVM ~]# curl -I www.z-dig.comHTTP/1.1 200 OKServer: www.z-dig.comDate: Sat, 23 Apr 2016 12:03:04 GMTContent-Type: text/html; charset=UTF-8Connection: keep-aliveVary: Accept-Encoding, CookieCache-Control: max-age=3, must-revalidate[root@KVM ~]#

经测试已成功将请求返回中的 Header 指定信息删除。想了解 ngx_headers_more 的其他功能请访问项目官网。

关于“怎么通过Nginx定义Header头信息”这篇文章的内容就介绍到这里,感谢各位的阅读!相信大家对“怎么通过Nginx定义Header头信息”知识都有一定的了解,大家如果还想学习更多知识,欢迎关注编程网行业资讯频道。

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     807人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     351人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     314人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     433人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     221人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯