보안상의 이유로 배포된 웹 콘텐츠는 다른 사람이 보거나 보안을 강화하는 것을 원하지 않습니다.
배포 단계:
먼저 apache의 htpasswd 기능을 사용하여 사용자 이름과 비밀번호를 생성합니다.
htpasswd -c /usr/local/nginx/conf/test.pass test New password:123456
2. nginx 구성 파일 위치 다음 두 줄을 추가합니다:
location / { root /usr/share; index index.php index.html index.htm; auth_basic "Authorized users only"; auth_basic_user_file conf/test.pass; }