nginx 和 fastdfs 整合在一起安装, 先解压编译安装 libfastcommon-master,fastdfs-6.04,fastdfs-master 然后解压 fastdfs-nginx-module-master,nginx-1.9.11. 请在编译安装nginx-1.9.11前配置 ./configure --prefix=/opt/nginx-1.9.11 --add-module=/你的目录位置/fastdfs-nginx-module-master/src --with-http_ssl_module --with-stream 然后再make & make install ,最后在nginx-1.9.11/conf/nginx.conf中加入配置
server{
listen 8089;
server_name localhost;
location ~* /\.(html|htm|jsp|php|js)$ {
deny all;
}
location /group1/M00{
root /data/fastdfs;
ngx_fastdfs_module;
}
}
其中 group1/M00是我自己配置的路径
1