-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnginx.conf
More file actions
84 lines (71 loc) · 2.47 KB
/
nginx.conf
File metadata and controls
84 lines (71 loc) · 2.47 KB
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
events {
worker_connections 1024;
}
http {
client_max_body_size 100M;
upstream frontend {
server frontend:3000;
}
upstream backend {
server backend:8000;
}
upstream minio {
server minio:9000;
}
# Default server block for both IP and nip.io access
server {
# change the port you want to use, but not 3000
listen 80 default_server;
# support any nip.io domain and direct IP access
# if you want to deploy on a cloud server,
# you can change the server_name to your server's domain name
server_name _ *.nip.io;
# Backend API
location /api {
proxy_pass http://backend/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;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
proxy_buffering off;
}
# Frontend
location / {
proxy_pass http://frontend;
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;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
proxy_buffering off;
proxy_http_version 1.1;
proxy_read_timeout 60s;
proxy_cache_bypass $http_upgrade;
}
# Next.js 静态文件和 API 路由
location /_next/ {
proxy_pass http://frontend;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection 'upgrade';
proxy_set_header Host $host;
proxy_cache_bypass $http_upgrade;
}
# API Documentation (Redoc)
location /redoc {
proxy_pass http://backend/redoc;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
}
# API Documentation (OpenAPI JSON)
location /openapi.json {
proxy_pass http://backend/openapi.json;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
}
}
}