1、编译 --with-http\_dav\_module ex: --prefix=/usr/local/nginx-1.8 --with-http\_stub\_status\_module --with-pcre=/home/judy/install/nginx/pcre-8.44 --with-http\_sub\_module --add-module=/home/judy/install/nginx/nginx-delay-module-master --with-http\_ssl\_module --with-http\_dav\_module 2、配置

server {
    listen 81;
    server_name localhost;
    ....
    location / {
        root html/put;
        dav_methods PUT DELETE;
        create_full_put_path on;
        client_max_body_size 600m;
        dav_access group:rw all:r;
        allow 172.16.201.0/24;
        deny all;
    }
}

说明:
dav_methods PUT; #允许特定的HTTP 和 WebDAV 方法
create_full_put_path on; #可以创建所以需要的中间目录
dav_access group:rw all:r; # 对最近创建的文件和目录设置访问权限
allow 6.6.6.6; #增加访问控制 deny all;

3、验证 (1)curl做客户端 curl -X PUT -H 'Content-Type: application/x-mpegurl' -d 'licaizaixian\_sd.ts' http://172.16.201.7:81/aaa-d:data,nginx中生成文件名为“aaa”,内容为“licaizaixian\_sd.ts” (2)jmeter为客户端 将本地文件put到nginx中 nginx-7-操作-接收put请求教程

nginx-7-操作-接收put请求教程

nginx-7-操作-接收put请求教程


4、debug:

debug:put大文件时,nginx返回413 Request Entity Too Large =》增加配置:client\_max\_body\_size 1g;

标签: nginx, http, module, put, 接收, dav

相关文章推荐

添加新评论,含*的栏目为必填