아파치 사용자인증
# htpasswd ==> /usr/local/apache/bin/htpasswd
htpasswd ==> /usr/local/etc/httpd/bin/htpasswd
리눅스 httpd.conf
재부팅 : /usr/local/apache/bin/apachectl restart
.htaccess파일
AuthType Basic
AuthName 회원영역
AuthUserFile /home/id/htdocs/admin/.htpasswd <-- 해당파일 경로설정
<Limit GET POST>
require valid-user
</Limit>
htpasswd 실행하기위한 httpd.conf 파일설정하기
############################################################
DocumentRoot "/home/id/public_html"
<Directory /> <-----최상위디렉토리에서 이하로........
Options FollowSymLinks ExecCGI
AllowOverride All <- None을 All로...
</Directory>
<Directory "/home/id/public_html"> <----------디렉토리를 선택하여...........
Options FollowSymLinks MultiViews ExecCGI
AllowOverride All <- None을 All로...
Order allow,deny
Allow from all
</Directory>
'Linux, Apache' 카테고리의 다른 글
웹호스팅 계정생성하기 (0) | 2017.04.11 |
---|---|
심볼릭링크 만들기 (0) | 2017.04.11 |
에러해결 No space left on device (0) | 2017.04.11 |
html htm상에서 php작동시키기 (0) | 2017.04.11 |
텔넷접속막기 설정 (0) | 2017.04.11 |