How to configure Basic Auth login authentication in Nginx

How to configure Basic Auth login authentication in Nginx

Sometimes we build a file server through nginx, which is generally public, but we hope that the server is not visible to others. Some people may build a login system, but it is too troublesome and unnecessary. A simpler way is to configure Basic Auth login authentication.

1. Make sure you have httpd-tools installed

yum install httpd-tools -y

2. Create an authorized user and password

htpasswd -c -d /usr/local/openresty/nginx/conf/pass_file magina

The storage path of this configuration file can be specified at will. Here I specify the nginx configuration file directory, where magina refers to the user name allowed to log in, which can be customized

3. Configure Nginx

The general configuration is as follows:

server {
  listen 80;  
  server_name res.yinnote.com;

  auth_basic "Login Authentication"; 
  auth_basic_user_file /usr/local/openresty/nginx/conf/pass_file;

  autoindex on;
  autoindex_exact_size on;
  autoindex_localtime on;

  root /mnt/html/resource;
  index index.html index.php;
}

Among them, auth_basic and auth_basic_user_file are authentication configurations. Note that the path of the password file must be the one generated above.

4. Use

# Use in the browser. Enter the address directly in the browser, and a user password input box will pop up. Enter it to access. # Use wget
wget --http-user=magina --http-passwd=123456 http://res.yinnote.com/xxx.zip

# Using curl
curl -u magina:123456 -O http://res.yinnote.com/xxx.zip

The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM.

You may also be interested in:
  • Detailed explanation of nginx basic auth configuration pitfalls
  • Tutorial on configuring Basic Authorization login authentication service certificate on Nginx

<<:  MySQL free installation version configuration tutorial

>>:  js canvas to realize the Gobang game

Recommend

A brief discussion on the principle of React two-way data binding

Table of contents What is two-way data binding Im...

How to find identical files in Linux

As the computer is used, a lot of garbage will be...

Use of hasOwnProperty method of js attribute object

Object's hasOwnProperty() method returns a Bo...

React nested component construction order

Table of contents In the React official website, ...

How to solve the DOS window garbled problem in MySQL

The garbled code problem is as follows: The reaso...

Discuss the development trend of Baidu Encyclopedia UI

<br />The official version of Baidu Encyclop...

Input file custom button beautification (demo)

I have written such an article before, but I used...

Detailed explanation of soft links and hard links in Linux

Table of contents 1. Basic storage of files and d...

Detailed explanation of MySQL 8.0 password expiration policy

Starting from MySQL 8.0.16, you can set a passwor...

Detailed analysis of Vue child components and parent components

Table of contents 1. Parent components and child ...

The front end creates and modifies CAD graphics details through JavaScript

Table of contents 1. Current situation 2. Create ...

Vue uses GraphVis to develop an infinitely expanded relationship graph

1. Go to the GraphVis official website to downloa...

MYSQL METADATA LOCK (MDL LOCK) theory and lock type test

Table of contents MYSQL METADATA LOCK (MDL LOCK) ...