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 | 29 | 30 |
Tags
- 우분투
- Redis
- 데이터베이스
- api 문서
- ScrollBooster
- php
- 접속자수
- 리눅스
- ulimit
- 18.04
- nginx
- db
- NVM
- MongoDB
- Linux
- tbls
- 스크롤부스터
- php7
- 몽고DB
- Node
- node.js
- PostgreSQL
- API design
- ubuntu
- nosql
- Stoplight
- 엔진엑스
- nodejs
- PGSQL
- JavaScript
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 |