如果Nginx位置没有proxy_pass / fcgi_pass / etc

时间:2018-10-31 17:01:29

标签: nginx

server {
  root ...;
  index index.html;
  stuff...
  location ~* \.(?:json)$ {
    add_header X-My-Header "hello world";
  }
}

在上面的代码段中,与示例中的位置匹配的请求(例如example.com/path/to/some.json)会发生什么?

如示例所示,可能会添加标头X-My-Header,但是由于没有proxy_pass / fcgi_pass / etc等,Nginx如何确定要发送的响应?

这是否也意味着该请求也与其他location指令相匹配?

或者rootindex指令对此请求有效吗?

0 个答案:

没有答案