사용자 인증 htpasswd

1. .htaccess 파일 작성

AuthName “(입력박스에 나타나는 메시지)”
AuthType Basic
AuthUserFile /특정디렉토리/.htpasswd
AuthGroupFile /dev/null

<Limit GET POST>
require valid-user
</Limit>

2. .htpasswd 파일 생성
htpasswd -c .htpasswd user_id

3. 사용자 추가
htpasswd .htpasswd user_id2

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.