httpd installieren
yum install
HTpasswd verwenden, um Passwortdateien zu erstellen
htpasswd -c /usr/local/nginx/conf/htpasswd aming # -c 表示创建文件, aming是用户名 # 当添加用户时,需要去掉 -c 参数 # 修改密码的方式和添加用户的方式相同
Nginx-Benutzerauthentifizierung konfigurieren
location /admin/ { auth_basic "Auth"; auth_basic_user_file /usr/local/nginx/conf/htpasswd; }
Das obige ist der detaillierte Inhalt vonSo implementieren Sie die Nginx-Authentifizierung. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!