nginx 作數據倉庫時,location 404 Not Found,發現找不到要用的數據報:Not Found

背景:  得到遠程機器某個目錄下的數據文件io

方案:使用Nginx配置ftp

 

一、/home/ftp/www/ 下面有images 文件夾,爲了訪問images下面文件,配置Nginx以下:配置

location /images {
root /home/ftp/www/images;
autoindex on;
}im

 

而後報錯爲:location  404 Not Found,實際上是由於你最終訪問的是 /images == root + images = /home/ftp/www/images/images,數據

因此正確的配置是:文件

location /images {
root /home/ftp/www/;
autoindex on;
}遠程

 

細節重要哦index

相關文章
相關標籤/搜索