Nginx显示未知标题

时间:2015-12-03 16:28:29

标签: http nginx header spdy

我有一个nginx服务器,它充当反向代理。 当我转储响应头时,我得到以下内容:

---output omitted---
< Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0
< Pragma: no-cache
< : : 
< Vary: Accept-Encoding
< X-UA-Compatible: IE=edge
---output omitted---

标题 :: 导致一些问题,我想通过nginx配置将其删除。 是否可以剥离此标题?

1 个答案:

答案 0 :(得分:0)

通过在nginx上使用More Headers模块并添加一个指令去除我需要的标题来解决这个问题:

more_clear_headers ':*';