-
-
Notifications
You must be signed in to change notification settings - Fork 184
/
nginx.conf
105 lines (84 loc) · 2.93 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
events {
worker_connections 1024;
}
http {
include /etc/nginx/mime.types;
default_type application/octet-stream;
# 增加 client_max_body_size 指令,设置请求体的最大大小为50M
client_max_body_size 50M;
# 新增重定向 www.91huajian.cn 到 91huajian.cn
server {
listen 80;
server_name www.91huajian.cn;
return 301 https://91huajian.cn$request_uri;
}
server {
listen 443 ssl;
server_name www.91huajian.cn;
ssl_certificate /etc/nginx/ssl/fullchain.crt;
ssl_certificate_key /etc/nginx/ssl/private.pem;
return 301 https://91huajian.cn$request_uri;
}
server {
listen 80;
server_name 91huajian.cn;
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;
location / {
root /usr/share/nginx/html;
index index.html index.htm;
try_files $uri $uri/ /index.html;
}
}
server {
listen 443 ssl http2;
server_name 91huajian.cn;
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;
ssl_certificate /etc/nginx/ssl/fullchain.crt;
ssl_certificate_key /etc/nginx/ssl/private.pem;
location / {
root /usr/share/nginx/html;
index index.html index.htm;
try_files $uri $uri/ /index.html;
}
# 转发 /huajian 接口到指定地址
location /huajian {
proxy_pass http://134.175.233.176:3399;
}
# 处理 Vue 路由刷新
location @router {
rewrite ^.*$ /index.html last;
}
}
# 添加新的服务器块处理 ai.91huajian.cn 的 HTTP 请求
server {
listen 80;
server_name ai.91huajian.cn;
location / {
proxy_pass http://134.175.233.176:3210;
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;
}
}
# 添加新的服务器块处理 ai.91huajian.cn 的 HTTPS 请求
server {
listen 443 ssl http2;
server_name ai.91huajian.cn;
ssl_certificate /etc/nginx/ssl/fullchain.crt;
ssl_certificate_key /etc/nginx/ssl/private.pem;
location / {
proxy_pass http://134.175.233.176:3210;
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;
}
}
}