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.
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
orreturn
directives Nginx will automatically start includingLocation
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;