server {
server_name nodebird.com
listen 80;
location / {
proxy_set_header HOST $host;
proxy_pass http://127.0.0.1:3060;
proxy_redirect off;
}
}
여기서 서버이름만 바꾸라고 하셨는데 proxy_pass를 http://127.0.0.1:3060; 로 적는게 맞나요?
그럼 http://127.0.0.1:3060; 은 nginx (프록시 서버)를 의미하는 것인가요?