Nginx指令add_header和proxy_set_header的区别
Posted 入门小站
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Nginx指令add_header和proxy_set_header的区别相关的知识,希望对你有一定的参考价值。
proxy_set_header是
nginx设置请求头信息给上游服务器
案例:
location /api {
proxy_set_header Host $host;
proxy_pass http://127.0.0.1:8080;
}
add_header是
Nginx`设置响应头信息给浏览器
案例:
location ~* \.js {
add_header Content-Type 'text/javascript;charset=utf-8';
}
以上是关于Nginx指令add_header和proxy_set_header的区别的主要内容,如果未能解决你的问题,请参考以下文章
nginx add_header Set-Cookie 过期不起作用