标签:数据仓库 dex 访问 cat 重要 远程机器 oca images root
背景: 获得远程机器某个目录下的数据文件
方案:使用Nginx配置
1、/home/ftp/www/ 下面有images 文件夹,为了访问images下面文件,配置Nginx如下:
location /images {
root /home/ftp/www/images;
autoindex on;
}
然后报错为:location 404 Not Found,其实是因为你最终访问的是 /images == root + images = /home/ftp/www/images/images,
所以正确的配置是:
location /images {
root /home/ftp/www/;
autoindex on;
}
细节重要哦
nginx 做数据仓库时,location 404 Not Found,发现找不到要用的数据报:Not Found
标签:数据仓库 dex 访问 cat 重要 远程机器 oca images root
原文地址:https://www.cnblogs.com/YouXiangLiThon/p/10546996.html