码迷,mamicode.com
首页 > Windows程序 > 详细

windows 端 nginx怎么配置 虚拟机的fastdfs文件管理系统

时间:2019-11-17 20:51:49      阅读:96      评论:0      收藏:0      [点我收藏+]

标签:class   _for   访问   root   目录   gen   keepaliv   cal   安装   

FastDFS的安装这里不演示

  • nginx.conf
#图片服务
    upstream img_server_pool{
        server 192.168.133.131:80 weight=10;
    }
    #学成网图片服务
    server {
        listen 80;
        server_name img.xuecheng.com;
        #个人中心
        location /group1/M00 {
            proxy_pass http://img_server_pool;
        }
    }
  • FastDFS-nginx-module
    将 FastDFS-nginx-module_v1.16.tar.gz 传 至 fastDFS 的 storage 服 务 器 的 /usr/local/下,执行如下命令:
  
cd /usr/local
tar -zxvf FastDFS-nginx-module_v1.16.tar.gz
cd FastDFS-nginx-module/src
    修改 config 文件将/usr/local/路径改为/usr/
    将 FastDFS-nginx-module/src 下的 mod_FastDFS.conf 拷贝至/etc/fdfs/下
cp mod_FastDFS.conf /etc/fdfs/
    并修改 mod_FastDFS.conf 的内容:
vi /etc/fdfs/mod_FastDFS.conf
base_path=/home/FastDFS
tracker_server=192.168.101.3:22122
tracker_server=192.168.101.4:22122
url_have_group_name=true #url 中包含 group 名称
store_path0=/home/fastdfs/fdfs_storage #指定文件存储路径
#如果有多个
    将 libfdfsclient.so 拷贝至/usr/lib 下
cp /usr/lib64/libfdfsclient.so /usr/lib/ 
    创建 nginx/client 目录
mkdir -p /var/temp/nginx/client
  • nginx 安装

 

    将 nginx-1.8.0.tar.gz 拷贝到/usr/local 下

 

    解压 nginx-1.8.0.tar.gz

 

    进入 nginx-1.8.0 目录,执行如下配置命令:

 

    下边红色部分表示添加 FastDFS-nginx-module 模块
./configure --prefix=/usr/local/nginx --pid-path=/var/run/nginx/nginx.pid --lock-path=/var/lock/nginx.lock --error-log-path=/var/log/nginx/error.log --http-log-path=/var/log/nginx/access.log --with-http_gzip_static_module --http-client-body-temp-path=/var/temp/nginx/client --http-proxy-temp-path=/var/temp/nginx/proxy --http-fastcgi-temp-path=/var/temp/nginx/fastcgi --http-uwsgi-temp-path=/var/temp/nginx/uwsgi --http-scgi-temp-path=/var/temp/nginx/scgi --add-module=/usr/local/fastdfs-nginx-module/src
  make

  make install
 

 

 

  • 进入/usr/local/nginx/config新建一个 nginx 配置文件 nginx-fdfs.conf.
     

 

#user  nobody;
worker_processes  1;

#error_log  logs/error.log;
#error_log  logs/error.log  notice;
#error_log  logs/error.log  info;

#pid        logs/nginx.pid;


events {
    worker_connections  1024;
}


http {
    include       mime.types;
    default_type  application/octet-stream;

    #log_format  main  ‘$remote_addr - $remote_user [$time_local] "$request" ‘
    #                  ‘$status $body_bytes_sent "$http_referer" ‘
    #                  ‘"$http_user_agent" "$http_x_forwarded_for"‘;

    #access_log  logs/access.log  main;

    sendfile        on;
    #tcp_nopush     on;

    #keepalive_timeout  0;
    keepalive_timeout  65;

    #gzip  on;

    server {
        listen 80;
        server_name 192.168.133.131;
        #个人中心
        location /group1/M00 {
            root /home/fdfs_storage;
            ngx_fastdfs_module;
        }
}

 

    说明:
      server_name 指定本机 ip
      location /group1/M00/:group1 为 nginx 服务 FastDFS 的分组名称,M00 是 FastDFS
      自动生成编号,对应 store_path0=/home/FastDFS/fdfs_storage,如果 FastDFS 定义
      store_path1,这里就是 M01

 

  • 启动storage上的nginx
/usr/local/nginx/sbin/nginx ‐c /usr/local/nginx/conf/nginx‐fdfs.conf
  • 测试

    在windows 下访问192.168.133.131/group1/M00/+url

    或者 img.xuecheng.com/group1/M00/+url

 

windows 端 nginx怎么配置 虚拟机的fastdfs文件管理系统

标签:class   _for   访问   root   目录   gen   keepaliv   cal   安装   

原文地址:https://www.cnblogs.com/javaju/p/11877811.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!