Detailed explanation of the pitfalls of add_header in nginx configuration tutorial

Detailed explanation of the pitfalls of add_header in nginx configuration tutorial

Preface

add_header is a directive defined in the headers module. As the name suggests, it is used to add http response headers. But please note that it is just "added", not rewritten. So if a header already exists, using add_header will cause problems. Moreover, in earlier versions of nginx, add_header does not support use in error pages.

This is a command with many pitfalls. Its processing stage is later than location processing. Although it can be written in location, if another location is rewritten, the add_header that has not been processed in the previous location will be lost. for example:

location = /a {
 add_header a 1;
 rewrite //b;
}
location = /b {
 add_header b 2;
 return 204;
} 

There is no head a 1, right? This is a pit!

Another pitfall is the duplication problem mentioned at the beginning. For example, I want to set Content-Type for a content, but because a default_type is set globally, it is repeated.

default_type 'text/plain';

location = /a {
 add_header Content-Type application/json;
 return 200 '"OK"';
} 

There are of course many solutions, such as leaving the default_type empty for this location, or simply not using add_header and directly modifying the default_type for this location.

The last big pitfall is that it does not work on error pages, which is also clearly defined in the document. For example, the following example:

location = /a {
 add_header Content-Type application/json;
 return 404 '"Not Found"';
}

I want to respond with a JSON, but since the status code is 404, add_header here does not take effect.

Although this example can solve the problem with default_type, what if it is other headers? For example, what should I do with Access-Control-Allow-Origin? Then there is no solution except using Lua or other third-party modules. Of course, nginx is aware of this problem, so the document also states that a parameter called always is supported after version 1.7.5. Although nginx itself solves this problem, tengine based on 1.6.2 will have problems.

Summarize

The above is the full content of this article. I hope that the content of this article will have certain reference learning value for your study or work. If you have any questions, you can leave a message to communicate. Thank you for your support for 123WORDPRESS.COM.

You may also be interested in:
  • How to add Nginx to system services in CentOS7
  • How to deploy multiple Vue projects under the same domain name using nginx and use reverse proxy
  • Python implementation example of monitoring differences in Nginx configuration files and sending email alerts
  • Detailed explanation of Nginx installation, SSL configuration and common commands under Centos7.x
  • How to configure nginx+php+mysql in docker
  • Solution to invalid Nginx cross-domain setting Access-Control-Allow-Origin
  • Example method of deploying react project on nginx
  • Use nginx.vim tool for syntax highlighting and formatting configuration nginx.conf file
  • Why should you be careful with Nginx's add_header directive?
  • Detailed steps for deploying https websites and configuring address rewriting in Nginx

<<:  Sharing of SQL optimization experience when offset is too large during MySQL paging

>>:  How to implement Svelte's Defer Transition in Vue

Recommend

How to isolate users in docker containers

In the previous article "Understanding UID a...

Native Js implementation of calendar widget

This article example shares the specific code of ...

IDEA2021 tomcat10 servlet newer version pitfalls

Because the version I used when I was learning wa...

Tic-Tac-toe game implemented in pure CSS3

Operation effect: html <div class="tic-ta...

How to achieve 3D dynamic text effect with three.js

Preface Hello everyone, this is the CSS wizard - ...

Detailed explanation of publicPath usage in Webpack

Table of contents output output.path output.publi...

How to build a complete samba server in Linux (centos version)

Preface smb is the name of a protocol that can be...

Example of Vue routing listening to dynamically load the same page

Table of contents Scenario Analysis Development S...

You may need a large-screen digital scrolling effect like this

The large-screen digital scrolling effect comes f...

MySQL recursion problem

MySQL itself does not support recursive syntax, b...

What are your principles for designing indexes? How to avoid index failure?

Table of contents Primary key index Create indexe...

The difference between ID and Name attributes of HTML elements

Today I am a little confused about <a href=&quo...

Linux editing start, stop and restart springboot jar package script example

Preface In the springboot configuration file, the...