Skip to content

zengpengkindle/FastDFSNetCore

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

48 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

FastDFSNetCore

Build Status

Nuget Packages

Package NuGet Stable Downloads
FastDFSNetCore FastDFSNetCore StackExchange.Redis

Basic Usage

see Program.cs

Ngx_fastdfs_module

server {
          listen       80;
 
          location / {
            root   /path/to/fdfsstore/fdfs_storage/data;
          }
 
          location /group1/M00 {
            root /path/to/fdfsstore/fdfs_storage/data;
            ngx_fastdfs_module;                   
         }  
          
         location ~* /group1/M00/(.*?)_([0-9]+)X([0-9]+)\.(jpeg|jpg|gif|png)$ {
           root /path/to/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;                 
        }        
}

About

FastDFS Async Client

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • C# 100.0%