nginx 에 여러 개의 전단 항목 배치

552 단어 기타
\ # nginx 설정 파일 수정
vim /usr/local/nginx/conf/nginx.conf
server {
    ...
        
    location / {
        root /usr/local/nginx/html/chenbz;
                index index.html index.htm;
    }
    location /test {
        alias /usr/local/nginx/html/test/;
        index index.html index.htm;
              
    }
        
    ...
}

여 기 는 alias, 아니 root, 그리고 test 의 뒤에 / 의 결말 이 있 습 니 다.
참고 블 로그:
  • NGINX 에 여러 개의 전단 프로젝트 를 어떻게 배치 합 니까
  • 좋은 웹페이지 즐겨찾기