1

私が欲しいもの:

 / => /var/www/
 /measurements /var/meassurements

「場所」を使用して取得するもの:

 / => /var/www/
 /measurements => /var/measurements/measurements

私は何が間違っているのですか?

構成スニペット:

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

location /measurements {                                                         
    root   /var/measurements/;                                                
    autoindex on;                                                          
}     
4

1 に答える 1

2

以下が機能するはずです。

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

location /measurements/ {                                                         
  root   /var;                                                
  autoindex on;                                                          
}    

その理由は、パスがroot + $ uriとして構成されているため、あなたが探していたのは/var/measurements/measurements

于 2012-11-19T15:10:27.687 に答える