在我的 nginx server {} 块中,我已使用路径定义了 root。我以后如何引用此路径?
这就是我想要实现的目标:
server {
listen 80;
root /var/www/foosite;
...
include $root/*.ngaccess;
}
不幸的是,使用 $root 不起作用(因为我没有定义它)。Nginx 是否提供了访问根值的方法?
答案1
你想要document_root
多变的。
在我的 nginx server {} 块中,我已使用路径定义了 root。我以后如何引用此路径?
这就是我想要实现的目标:
server {
listen 80;
root /var/www/foosite;
...
include $root/*.ngaccess;
}
不幸的是,使用 $root 不起作用(因为我没有定义它)。Nginx 是否提供了访问根值的方法?
你想要document_root
多变的。