Test

Ling Yu
Ling Yu

nginx命令

nginx #启动
nginx -s reload # 重新载入配置文件
nginx -s reopen # 重启 Nginx
nginx -s stop # 停止 Nginx
 

搭建webdav

简易版本

vim /etc/ningx/conf.d/dav.conf
server{
    listen 8080;
    server_name webdav;
    location / {
        root /var/ftp/pub/;
        autoindex on; # 显示目录
        autoindex_exact_size off; # 显示文件大小 #默认为 on 显示出文件的确切大小,单位是 bytes
          #改为 off 后,显示出文件的大概大小,单位是 kB 或者 MB 或者 GB
        autoindex_localtime on; # 显示文件时间 #默认为 off,显示的文件时间为 GMT 时间 #改为 on 后,显示的文件时间为文件的服务器时间
        charset utf-8,gbk; #解决中文乱码问题
    }
}

dav插件

apt install nginx-full
vim /etc/ningx/conf.d/dav.conf
# 生成密码文件:
echo 用户名:$(openssl passwd -5 密码)>/etc/nginx/davpasswd
mkdir -p /opt/webdav
chown -R www-data:www-data /opt/webdav
chmod -R 755 /opt/webdav
server{
    #listen 443 ssl;
    listen 8080;
    #ssl_certificate "";
    #ssl_certificate_key "";
    server_name webdav;

    location / {
        root /opt/webdav;
        auth_basic Basic;
        auth_basic_user_file /etc/nginx/davpasswd;
        charset utf-8;

        autoindex on;
        autoindex_localtime on;
        autoindex_exact_size off;
        client_max_body_size 0;

        create_full_put_path on;
        dav_access user:rw group:rw all:r;
        set $dest $http_destination;
        if (-d $request_filename) {
            rewrite ^(.*[^/])$ \$1/;
            set $dest $dest/;
        }
        if ($request_method ~ MKCOL) {
            rewrite ^(.*[^/])$ $1/ break;
        }
        dav_methods PUT DELETE MKCOL COPY MOVE;
        dav_ext_methods PROPFIND OPTIONS LOCK UNLOCK;

    }
}