1.ROOT경로변경법 nginx를 yum 설치시 기본경로는 /usr/share/nginx/html 이다. 하지만 기본경로를 바꾸고싶다면? nginx설치경로/conf.d 에서 vi 에디터로 defualt.conf 를 연다 location / { root /usr/share/nginx/html; index index.html index.htm; } 다음 부분의 root 경로를 원하는 소스가 있는 경로로 변경해주면 된다. 여기서 location은 url뒤에 붙는 경로로 만약 abc/test 아래에 소스가있다면, location /test { root /abc; index index.html index.htm; } 위와같이 설정하면 url에 ip:포트/test 까지 입력해서 접속할 수 있게 할 수 있다. 2. ..