Add Location as add_header inside location block

919 Views Asked by At

How to do we add Location inside add_header inside nginx location block for Response headers So the Location inside response header looks like this. Please see the last paramter

The value of location header is same as the browser VIP

1

There are 1 best solutions below

4
On

Location header is relevant only with 3xx redirects. Using this header you're telling the client to what location it should redirect (how should URL change).

When configuring redirect by rewrite or return directives Nginx will automatically start including Location header in responses.

https://www.digitalocean.com/community/tutorials/how-to-create-temporary-and-permanent-redirects-with-nginx

If you want to explicitly set the location header to any response you could one of these (second one in case you're using some non-standard port):

add_header Location $scheme://$host;

add_header Location $scheme://$host:$port;

    location / {
        root   /usr/share/nginx/html;
        index  index.html index.htm;
        add_header Location $scheme://$host;
    }