在nginx.conf文件中,root指令用于指定網站的根目錄。該指令通常與server指令一起使用,用于定義特定虛擬主機的根目錄。示例如下:
server {
listen 80;
server_name example.com;
root /var/www/html/example;
location / {
index index.html;
}
}
在上面的示例中,root指令指定了網站example.com的根目錄為/var/www/html/example。當用戶訪問該網站時,nginx會在該目錄下尋找相應的文件或目錄來提供服務。