FastDFS 分布式文件存储目录
Posted caozhiyuan
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了FastDFS 分布式文件存储目录相关的知识,希望对你有一定的参考价值。
1、fastdfs安装和配置
2、使用nginx代理fastdfs以及图片裁剪(fastdfs-nginxmodule)
server { listen 8888; location / { root /home/caozhiyuan/fdfsstore/fdfs_storage/data; } location /group1/M00 { root /home/caozhiyuan/fdfsstore/fdfs_storage/data; ngx_fastdfs_module; } location ~* /group1/M00/(.*?)_([0-9]+)X([0-9]+).(jpeg|jpg|gif|png)$ { root /home/caozhiyuan/fdfsstore/fdfs_storage/data; set $h $2; set $w $3; rewrite /group1/M00/(.*?)_([0-9]+)X([0-9]+).(jpeg|jpg|gif|png)$ /$1.$4 break; image_filter_buffer 10M; image_filter resize $h $w; } }
3、.net fastdfs客户端使用(https://github.com/caozhiyuan/FastDFSNetCore)
以上是关于FastDFS 分布式文件存储目录的主要内容,如果未能解决你的问题,请参考以下文章