티스토리 뷰
반응형
Node (Express) 내의 라우터에서 사용자의 IP를 불러오는 방식은 다양함.
필자가 자주 사용하는 방법은 두 가지.
1. request 로 들어오는 header 사용
req.headers["x-real-ip"]
2. request-ip API 사용
const requestIp = require("request-ip")
requestIp.getClientIp(req)
서버를 Nginx로 구축하였을 때, IP가 0.0.0.0 혹은 127.0.0.1 (localhost) 와 같이 제대로 안 불러와지는 현상이 있음.
해당 경우에는 nginx.conf 설정에서 IP 가 뜨도록 설정해줄 수 있음.
/etc/nginx/nginx.conf 파일에서
(설정한 환경에 따라 /etc/nginx/sites-enabled/ 에 있을 수도 있음)
아래 location 값을 추가해주자.
location / {
proxy_set_header HOST $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_pass http://127.0.0.1:3080;
proxy_redirect off;
}
반응형
'Server dev. > NGINX' 카테고리의 다른 글
Nginx 초기 설정 https (0) | 2024.01.31 |
---|---|
[NGINX] 413 Request Entity Too Large (0) | 2021.07.20 |
https 인증서 자동 갱신 (Let's Encrypt) (Crontab사용) (0) | 2021.06.15 |
Nginx로 https 적용하기 (let's encrypt 사용) (2) | 2021.01.19 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- Docker
- ubuntu
- numpy
- 3Dvision
- Android
- nginx
- Deep Learning
- nerf
- git
- Python
- MacOS
- Macbook
- vscode
- java
- pytorch
- SSH
- Object Detection
- GaussianSplatting
- CUDA
- 우분투
- Novel View Synthesis
- Anaconda
- error
- MySQL
- Computer Vision
- Machine Learning
- nvidia
- 2-stage Detector
- Neural Radiance Field
- GPU
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
글 보관함