为什么我可以在nginx中没有位置限制的情况下提供网页?

时间:2018-08-01 23:57:58

标签: nginx nginx-location

我正在尝试理解location指令的行为,该指令在被省略时仍然可以正常工作。给定以下内容并假定目录/ bar中存在一个index.html:

server {
    listen       80;
    server_name  foo.com;

    root   /bar;

    #location = / {
    #    try_files /index.html =404;
    #}
}

为什么仍然可以访问以下内容:

0 个答案:

没有答案