我正在尝试从两个单独的静态文件中获取我的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/abc给出404
我想念什么吗?
编辑: 我对nginx配置工作原理的基本理解存在缺陷。我认为索引文件是在根本身/