홈페이지에 Apache 인증 설정하기
1. httpd.conf 설정
<Directory "/home/avatar"> Options Includes FollowSymLinks AllowOverride All Order allow,deny Allow from all </Directory>인증하고자 하는 디렉토리가 "home/avatar" 라고 할 때 위에 처럼 설정
2. /home/avatar 에 .htaccess 파일 생성
AuthName 인증시보여줄안내(공백없이) AuthType Basic AuthUserFile /인증할 디렉토리의 절대경로/.htpasswd AuthGroupFile /dev/null <Limit GET POST> require valid-user </Limit>
3. .htpasswd 파일 생성
/usr/local/apache2/bin/htpasswd -c .htpasswd ID(처음 만들 때) htpasswd .htpasswd ID(사용자 추가) 비밀번호를 입력하면 됩니다.
'Technology > Operating Systems' 카테고리의 다른 글
Linux / 리눅스에서 문서내 문자열 검색하기 (0) | 2011.08.11 |
---|---|
Linux / Server monitoring tool - rrdtool (0) | 2011.07.18 |
Linux / dmidecode, 리눅스 Hardware 정보 (0) | 2011.06.09 |
Linux / Console에서 그래픽모드 실행하기 (0) | 2011.05.25 |
Linux / PORT 추가, 관리 (0) | 2011.05.24 |