nginx 인증 설정
2023. 6. 10. 22:25ㆍWeb Server/nginx
HTTP Basic Authentication
https://www.howtogeek.com/devops/how-to-setup-basic-http-authentication-on-nginx/
# 비밀번호 파일 생성
sudo apt-get install apache2-utils
sudo htpasswd -c /etc/nginx/.htpasswd admin
# 비밀번호 입력
# nginx 설정 변경
location / {
auth_basic "Restricted Content";
auth_basic_user_file /etc/nginx/.htpasswd;
}
# nginx 재기동
sudo systemctl restart nginx
'Web Server > nginx' 카테고리의 다른 글
nginx header 정보 제거 (0) | 2024.03.01 |
---|---|
nginx와 minikube ingress 연동 (0) | 2024.02.03 |
minikube proxy 설정 (0) | 2023.06.06 |
nginx Trouble Shooting (0) | 2023.05.27 |
nginx 사설 ssl 적용 (0) | 2023.05.07 |