Nginx HTTP AUTH

1. NGINX CONF

location “~^/html/.*” {
try_files $uri $uri/ =404;
auth_basic “Restricted Content”;
auth_basic_user_file /usr/local/nginx/conf/auth/.htpasswd;
}

2. 계정 파일 생성

# sudo htpasswd -c /usr/local/nginx/conf/auth/.htpasswd test_user
New password:
Re-type new password:
Adding password for user another_user

답글 남기기

이메일 주소는 공개되지 않습니다. 필수 필드는 *로 표시됩니다