Nginx位置未解析

时间:2019-12-10 16:46:25

标签: nginx nginx-location nginx-config

我正在尝试从两个单独的静态文件中获取我的nginx实例主机。

根路径的配置有效,但使用任何其他前缀模式均未找到404。

配置如下:

server {
    listen       80;
    server_name  *.saurabhharwande.com;
    root         /var/www/certbot;

    location /abc/ {
        index  vindex.html;
    }

    location / {
        root  /usr/share/nginx/html;
        index index.html index.htm;
    }
}

www.saurabhharwande.com有效

www.saurabhharwande.com/abc给出404

我想念什么吗?

编辑: 我对nginx配置工作原理的基本理解存在缺陷。我认为索引文件是在根本身///index.html中搜索的,而位置仅用于指向不同的根。而是在 / / /index.html

中进行搜索

0 个答案:

没有答案