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;
}
// 해당 명령을 내리면,
nginx -V
// 이런 결과물이 있다.
...
--prefix=/opt/homebrew/Cellar/nginx/1.25.3
...
// 들어가보자
cd /opt/homebrew/Cellar/nginx/1.25.3
// 그리고 목록을 보자
ls -al
// 그러면, 이처럼 link가 걸려 있다.
html -> ../../../var/www
바로 저기 있는것이다.