Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- php
- tbls
- 데이터베이스
- JavaScript
- nginx
- ulimit
- Linux
- Node
- 접속자수
- 우분투
- Stoplight
- ScrollBooster
- 리눅스
- PostgreSQL
- NVM
- nodejs
- 엔진엑스
- db
- 18.04
- 몽고DB
- node.js
- api 문서
- MongoDB
- API design
- nosql
- Redis
- PGSQL
- ubuntu
- 스크롤부스터
- php7
Archives
- Today
- Total
Parallel World
Nginx를 Node.js Reverse Proxy Server 설정 본문
nginx configure 설정
server {
listen 80;
listen [::]:80;
server_name exemple.dev;
location / {
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $http_host;
proxy_set_header X-NginX-Proxy true;
proxy_pass http://xxx.xxx.xxx.xxx:xxxx/; # Node.js로 실행된 웹서버 주소
proxy_redirect off;
}
}
'프로그래밍 > Linux' 카테고리의 다른 글
우분투 18.04 MongoDB 설치 및 구성 (2) | 2020.09.02 |
---|---|
우분투 Node.js 동시 접속자 수 제한 문제 해결하기 (0) | 2020.08.31 |
Ubuntu18.04 - Node.js 프로세스 관리도구 PM2 (0) | 2020.01.22 |
Postgresql ROLE 백업 및 복구 (0) | 2019.10.01 |
Ubuntu18.04 - nvm 및 nodejs 최신버전설치 (0) | 2019.09.09 |
Comments