-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnginx.dev.conf
56 lines (47 loc) · 1.55 KB
/
nginx.dev.conf
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
worker_processes auto;
events {
worker_connections 1024;
}
http {
include mime.types;
default_type application/octet-stream;
# 업스트림 서버 정의
upstream backend_servers {
# 백엔드 서버 목록 (로드 밸런싱 대상 서버)
server betting_duck_app_dev:3000;
}
server {
listen 80;
# 일반 API 요청 처리
location /api {
proxy_pass http://backend_servers/api;
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;
}
# Socket.IO 요청 처리
location /socket.io/ {
proxy_pass http://backend_servers/socket.io/;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection $http_connection;
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;
# WebSocket 시간 초과 설정
proxy_read_timeout 60s;
proxy_send_timeout 60s;
# 버퍼 크기 설정
proxy_buffering off;
}
# 정적 파일 경로 설정
location / {
root /static/;
index index.html;
autoindex off;
try_files $uri /index.html;
}
}
}