Skip to content
This repository was archived by the owner on Aug 10, 2022. It is now read-only.

Commit 305de7b

Browse files
committed
Update nginx.conf
1 parent 7687b6b commit 305de7b

File tree

2 files changed

+17
-0
lines changed

2 files changed

+17
-0
lines changed

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Express-Nginx
22

3+
Nginx ` /etc/nginx/sites-enabled/default` 파일 내용 예시 `nginx.conf` 보기 [link](./nginx.conf)
4+
5+
1. [Nginx 란?, ENG](https://gist.github.com/unchaptered/d534826205517bf1e08311df57e02d66)
6+
2. [Revers Proxy란?, ENG](https://gist.github.com/unchaptered/b13ace153fc948dbbf43d865fbe7766c)
7+
38
![](./Reverse%20Proxy%20Server.png)
49

510
1. [AWS 설정 방법](./aws.set.md)

nginx.conf

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
server {
2+
3+
listen 80;
4+
listen [::]:80;
5+
6+
access_log /var/log/nginx/reverse-access.log;
7+
error_log /var/log/nginx/reverse-error.log;
8+
9+
location / {
10+
proxy_pass http://127.0.0.1:3000;
11+
}
12+
}

0 commit comments

Comments
 (0)