我想从 http 响应头中删除 Nginx。我可以隐藏我的 Nginx 版本,但我也想隐藏 Nginx。谢谢
问问题
35305 次
1 回答
32
使用该ngx_headers_more
模块 - 请参阅http://wiki.nginx.org/NginxHttpHeadersMoreModule。
它允许您配置任何您想要的任意标头 - 请求和响应标头。一旦你安装了它(并因此重新编译了你的 Nginx 版本),使用以下配置:
more_set_headers 'Server: my-server';
或者,如果您根本不需要Server
标题,请使用以下命令清除它:
more_clear_headers 'Server';
于 2013-04-18T04:24:43.300 回答