본문 바로가기
여러가지/기타

[Nginx] 엔진엑스 location 경로 여러개 설정 시 다른 폴더 index 나오게 하는 방법 !!

by 포스트it 2023. 6. 15.
반응형

 

[Nginx] 엔진엑스 location 경로 여러개 설정 시 다른 폴더 index 나오게 하는 방법 !!

nginx 설정 하면서 root index 로 루트경로 말고 새로운 url에 진행하니 에러가 나서 찾아보니

alias로 폴더를 설정해주면 된다고하여 해결하였습니다 ㅎ

 

예제코드
server {
  listen 80;
  server_name test.com

  location / {
    root /home/ubuntu/project;
    index index.html;
  }

  location /test {
    alias /home/ubuntu/test;
  }
}
728x90
반응형

댓글