-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnginx.conf
110 lines (91 loc) · 3.24 KB
/
nginx.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
worker_processes auto;
events {
worker_connections 1024;
}
http {
include mime.types;
default_type application/octet-stream;
# 업스트림 서버 정의
upstream backend_servers {
# 백엔드 서버 목록 (로드 밸런싱 대상 서버)
server betting_duck_app:3000;
}
# server {
# listen 443 ssl;
# server_name dev-betting.duckdns.org;
# ssl_certificate /ssl/fullchain.pem;
# ssl_certificate_key /ssl/privkey.pem;
# ssl_ciphers 'EECDH+AESGCM:EDH+AESGCM:AES256+EECDH:AES256+EDH';
# ssl_prefer_server_ciphers on;
# ssl_protocols TLSv1.2 TLSv1.3;
# 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;
# }
# }
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;
}
# certbot 인증 요청 처리
location /.well-known {
root /certbot/;
autoindex off;
}
# 정적 파일 경로 설정
location / {
root /static/;
index index.html;
autoindex off;
try_files $uri /index.html;
}
}
}