Nginx 사용자 이름과 비밀번호 기반 접근 제어

1 가방 설치
yum install -y httpd-tools

2 검사 파일 만 들 기
htpasswd -cb /etc/nginx/.htpasswd user1 'passwd1'
chown nginx:nginx /etc/nginx/.htpasswd
chmod 400 /etc/nginx/.htpasswd

3 검사 파일 불 러 오기
vim /etc/nginx/nginx.conf

다음 정보 추가:
server {
  [...]
  auth_basic "Restricted";
  auth_basic_user_file /etc/nginx/.htpasswd;
}

프로필 다시 불 러 오기:
/etc/init.d/nginx reload

4 테스트 인증
curl http://user1:[email protected]

좋은 웹페이지 즐겨찾기