-
nginx에 basic auth 설정웹개발 2014. 2. 19. 09:00
1. config 파일에 관련 정보 설정
location / { auth_basic "closed site”; #접속할때 보이는 메세지 auth_basic_user_file conf/htpasswd; #id, password 파일위치 }
2. htpasswd명령어를 이용해서 password 파일을 생성함.
htpasswd -b htpasswd testid testpassword
참조 : http://nginx.org/en/docs/http/ngx_http_auth_basic_module.html
'웹개발' 카테고리의 다른 글
Grinder : 로드(성능, 부하) 테스팅 도구 (0) 2014.03.27 yeoman 설치 및 실행 (0) 2014.02.12 OSX에 Nginx 설치 (0) 2013.12.23 댓글