nginx의 root html은 도대체 왜 저기에 있는가

아이고마워·2023년 12월 8일
0

nginx

목록 보기
1/1




1. 처음 nginx를 설치.
2. root에 html이 기본값으로 설정되어있다.
3. localhost:8080실행시 Welcome nginx 가 잘 뜨게된다.

/opt/homebrew/etc/nginx/nginx.conf
server {
    listen       8080;
    server_name  localhost;
    location / {
        root   html;
        index  index.html index.htm;
}

근데 저 html은 어디 있는것인가?


// 해당 명령을 내리면,
nginx -V 
// 이런 결과물이 있다.
...
--prefix=/opt/homebrew/Cellar/nginx/1.25.3
...
// 들어가보자
cd /opt/homebrew/Cellar/nginx/1.25.3

// 그리고 목록을 보자
ls -al
// 그러면, 이처럼 link가 걸려 있다.
html -> ../../../var/www

바로 저기 있는것이다.

0개의 댓글