1. Nginx 우선순위

location / {


root /usr/local/openresty/nginx/html;  

#경로의 index.htm 이나, index.html 호출.  아래의 확장자 location으로 search 가 진행됨.

}


location ~ \.(htm|html|ico|jhtm|PDF|png|zip|ZIP|unity3d|jpeg|ai|bin|dat|dwg|dxf) {

    root /images

}


확장자  location에서 root /images 로 변경되어,  html 파일을 /images 경로에서 찾게됨.

+ Recent posts