Nginx 서버 비밀번호 인증 추가

528 단어 nginx
가끔 은 일부 사이트 가 다른 사람 에 게 보이 지 않 으 려 면 암호 화 방문 이 필요 합 니 다. 이때 nginx 를 간단하게 설정 하면 됩 니 다.
nginx 도 메 인 이름 프로필 수정
location / {
    root   html;
    index  index.html index.htm index index.jpg;
    auth_basic 'Restricted';            #     ,    
    auth_basic_user_file /htpasswd/passwd.db;      #        ,    。
  }

htpasswd 명령 을 통 해 사용자 이름과 대응 하 는 암호 데이터베이스 파일 생 성
htpasswd -c /htpasswd/passwd.db test
chmod 777 /htpasswd/passwd.db test
/usr/local/nginx/sbin  -s relaod

좋은 웹페이지 즐겨찾기