location / { proxy_pass http://127.0.0.1:3000; proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Forwarded-Proto $scheme; }proxy_set_header Host $host; → 원래 요청의 호스트 정보를 백엔드에 전달.proxy_set_header X-Real-IP $remote_addr; → 클라이언트의 실제 IP 주소 전달.proxy_set_header X-Forwarded-For $proxy..