Detailed tutorial on nginx function construction
1, Access control
Authentication access based on user name and password Server configuration
vim /usr/local/nginx/conf/nginx.conf
Add under the location to be verified, taking the root region as an example
location / {
root html;
index index.html index.htm;
#Add the following two lines
auth_basic "welcome you here";
auth_basic_us ...
Posted by sawade on Sat, 25 Sep 2021 18:07:10 -0700