HomeAboutMeBlogGuest
© 2025 Sejin Cha. All rights reserved.
Built with Next.js, deployed on Vercel
🍗
[New] 조규현팀
/
🔗
개발에 도움이 되는 사이트
/
🌂
HTTP 인증
🌂

HTTP 인증

Tags
Security
Created
Jul 28, 2022 09:07 AM
Related to 생각 공유 주제 (1) (링크) 1
category
Security
creator
modifier
type
Project
속성
HTTP 인증 - HTTP | MDN
Apache 서버에서 디렉터리를 비밀번호로 보호하기 위해서는, .htaccess와 .htpasswd 파일이 필요할 것입니다. .htaccess 파일은 일반적으로 이렇게 생겼습니다. AuthType Basic AuthName "Access to the staging site" AuthUserFile /path/to/.htpasswd Require valid-user .htaccess 각각의 줄이 콜론(":")으로 나뉘어져 있는 사용자 이름과 비밀번호를 포함하는 .htpasswd 파일을 참조합니다. 여러분은 그들이 암호화되어 있기 때문에 (이 경우에서는 md5) 실제 비밀번호를 보지 못할 수도 있습니다.
HTTP 인증 - HTTP | MDN
https://developer.mozilla.org/ko/docs/Web/HTTP/Authentication
HTTP 인증 - HTTP | MDN