Nginx指令add_header和proxy_set_header的区别

Posted 入门小站

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Nginx指令add_header和proxy_set_header的区别相关的知识,希望对你有一定的参考价值。

proxy_set_headernginx设置请求头信息给上游服务器

案例:

location /api {
    proxy_set_header Host $host;
    proxy_pass http://127.0.0.1:8080;
}

add_headerNginx`设置响应头信息给浏览器

案例:

location ~* \.js {
    add_header Content-Type 'text/javascript;charset=utf-8';
}




以上是关于Nginx指令add_header和proxy_set_header的区别的主要内容,如果未能解决你的问题,请参考以下文章

nginx 定义:响应头和请求头

7. Nginx资源的跨域访问

nginx add_header 不工作

nginx add_header Set-Cookie 过期不起作用

Nginx add_header Sec-WebSocket-Protocol 不起作用

nginx 实现 ajax 跨域请求