하위 도메인의 루트 URL과 하위 도메인의 디렉토리를 서버의 두 개의 다른 폴더에 제공하려고합니다. 여기 내가 가지고 있고 작동하지 않는 간단한 설정이 있습니다 ...
server {
index index.html index.htm;
server_name test.example.com;
location / {
root /web/test.example.com/www;
}
location /static {
root /web/test.example.com/static;
}
}
이 예제에서는 test.example.com/
인덱스 파일을/web/test.example.com/www
과에가는 것은 test.example.com/static
에서 인덱스 파일을 가져올 것/web/test.example.com/static
alias
. 사용자가 작성한 커뮤니티 위키가 아닌 공식 문서를 읽으 십시오 . 인용문 : location이 지시문 값의 마지막 부분과 일치하면 root 지시문을 사용하는 것이 좋습니다 .