Detailed process of using nginx to build a webdav file server in Ubuntu

Detailed process of using nginx to build a webdav file server in Ubuntu

Install nginx

Note that you must install nginx-full , the default nginx does not contain the webdav module

$ sudo apt install -y nginx-full

Create relevant folders

# The location used to save shared files$ sudo mkdir -p /home/dav
$ sudo chown -R www-data:www-data /home/dav

Configuration

$ sudo vim /etc/nginx/sites-enabled/webdav.conf

The content is as follows:

server {
    listen 80;

    server_name localhost;
	# Set to use utf-8 encoding to prevent Chinese file names from being garbled charset utf-8;

	# The default path for storing files is root /home/dav;

    auth_basic realm_name;
    # User password file storage location auth_basic_user_file /etc/nginx/.passwords.list;

    # dav allowed operations dav_methods PUT DELETE MKCOL COPY MOVE;
    dav_ext_methods PROPFIND OPTIONS;
    
    # Create the default permissions for files dav_access user:rw group:rw all:r;

    # Temporary file location client_body_temp_path /tmp;
    
    # Maximum upload file limit, 0 means unlimited client_max_body_size 0;
    
    # Enable automatic folder creation (if necessary)
    create_full_put_path on;
}

Generate Password

$ echo -n 'lpwm:' | sudo tee /etc/nginx/.passwords.list
$ openssl passwd -apr1 | sudo tee -a /etc/nginx/.passwords.list
# Restart nginx after confirming the password
$ sudo nginx -s reload

Windows Client

You can first use the browser to directly access the server IP to view

insert image description here

I tried to map the network drive directly in Windows File Explorer, but it didn't work! I used a third-party client: RaiDrive , which is quite conscientious. The standard version is free and supports up to 8 drives, which is obviously enough!

Download from official website: https://www.raidrive.com/download

After installation, you need to add server configuration:

insert image description here

Note that you can use the http protocol only if you uncheck Address , otherwise you can only use https by default

insert image description here

After adding, the mapped drive in the file explorer will be automatically opened

insert image description here

Nice!

insert image description here

The above is the details of using nginx to build a webdav file server in Ubuntu. For more information about using nginx to build a webdav file server, please pay attention to other related articles on 123WORDPRESS.COM!

You may also be interested in:
  • Methods and steps to build nginx file server based on docker
  • Graphic tutorial on configuring nginx file server in windows 10 system
  • Nginx learning static file server configuration method
  • Detailed explanation of nginx configuration static file server

<<:  Let’s talk in detail about how browsers view closures

>>:  Why should MySQL fields use NOT NULL?

Recommend

What you need to know about msyql transaction isolation

What is a transaction? A transaction is a logical...

Is it true that the simpler the web design style, the better?

Original address: http://www.webdesignfromscratch...

MySQL5.7 single instance self-starting service configuration process

1.MySQL version [root@clq system]# mysql -v Welco...

Common functions of MySQL basics

Table of contents 1. Common function classificati...

Javascript Basics: Detailed Explanation of Operators and Flow Control

Table of contents 1. Operator 1.1 Arithmetic oper...

CSS shadow animation optimization tips

This technique comes from this article - How to a...

The front-end page pop-up mask prohibits page scrolling

A problem that front-end developers often encount...

How to split data in MySQL table and database

Table of contents 1. Vertical (longitudinal) slic...

Understanding MySQL index pushdown in five minutes

Table of contents What is index pushdown? The pri...

How to install and use Cockpit on CentOS 8/RHEL 8

Cockpit is a web-based server management tool ava...

Pure js to achieve the effect of carousel

This article shares the specific code of js to ac...

Example code for implementing hexagonal borders with CSS3

The outermost boxF rotates 120 degrees, the secon...

MySQL Flush-List and dirty page flushing mechanism

1. Review The Buffer Pool will be initialized aft...

Solution to the impact of empty paths on page performance

A few days ago, I saw a post shared by Yu Bo on G...