nginx
6.76 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
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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
#user nobody;
worker_processes 1;
#error_log logs/error.log;alsdfkjlakfj
#error_log logs/error.log notice;
#error_log logs/error.log info;
#pid logs/nginx.pid;
events {
worker_connections 1024;
}
http {
include mime.types;
default_type application/octet-stream;
#log_format main '$remote_addr - $remote_user [$time_local] "$request" '
# '$status $body_bytes_sent "$http_referer" '
# '"$http_user_agent" "$http_x_forwarded_for"';
#access_log logs/access.log main;
sendfile on;
#tcp_nopush on;
#keepalive_timeout 0;
keepalive_timeout 65;
#gzip on;
#server {
# listen 81;
# server_name 172.25.7.170;
#地图服务
# location ^~ /iserver {
# proxy_pass http://172.25.7.175:80;
# }
# location ~.*\.(html|htm|ico|png|jpg|jpeg|js|css|bmp)$ {
# proxy_pass http://172.25.7.175:80;
# }
#}
upstream gateway
{
server 172.25.7.182:80;
server 172.25.7.183:80;
}
upstream frontpage
{
server 172.25.7.170:52000;
}
upstream consumer
{
server 172.25.7.171:8090;
server 172.25.7.172:8090;
server 172.25.7.173:8090;
}
server {
listen 8080;
server_name 172.25.7.170;
access_log /data/funde/nginxlog/nginx8080.log;
rewrite_log on;
location / {
if ($request_uri ~ "v1"){
set $zone $1;
proxy_pass http://gateway;
}
if ($request_uri ~ "gras"){
set $zone $1;
proxy_pass http://consumer;
}
}
}
server {
listen 8082;
server_name 172.25.7.170;
access_log /data/funde/nginxlog/nginx8082.log;
rewrite_log on;
location / {
proxy_pass http://frontpage;
}
}
server {
listen 80;
server_name 172.25.7.170;
access_log /data/funde/nginxlog/nginx80.log;
rewrite_log on;
#charset koi8-r;
#access_log logs/host.access.log main;
location ~* \.(html|htm|ico|png|jpg|jpeg|js|css|bmp)$ {
proxy_pass http://frontpage;
#try_files $uri @iserver_file;
if ($request_uri ~ "v1"){
set $zone $1;
proxy_pass http://gateway;
}
if ( $request_uri ~* /iserver ) {
proxy_pass http://172.25.7.175;
}
if ($request_uri ~ "gras"){
set $zone $1;
proxy_pass http://consumer;
}
}
#location @iserver_file {
# proxy_pass http://172.25.7.175;
#}
location ^~ /v1 {
proxy_pass http://gateway;
}
location ^~ /gras {
proxy_pass http://consumer;
}
#地图服务
location ^~ /iserver {
proxy_pass http://172.25.7.175:80;
#/iserver/services/funde/rest/maps/China;
}
#登录
location ^~ /login {
proxy_pass http://172.25.7.170/index.html;
}
#主页
location ^~ /#/ {
proxy_pass http://172.25.7.170/#/;
}
#保单落图匿
location ^~ /#/BD_luotu/index {
proxy_pass http://172.25.7.170/#/BD_luotu/index;
}
#智能分区
location ^~ /#/BD_fenqu/index {
proxy_pass http://172.25.7.170/#/BD_fenqu/index;
}
#自定义分匿
location ^~ /#/custom_partition/index {
proxy_pass http://172.25.7.170/#/custom_partition/index;
}
#分区结果检查及区域匹配
location ^~ /#/result_check/index {
proxy_pass http://172.25.7.170/#/result_check/index;
}
#分单批次申请
location ^~ /#/reinsurance_policy/index {
proxy_pass http://172.25.7.170/#/reinsurance_policy/index;
}
#分单结果检查及调整
location ^~ /#/check_adjust/index {
proxy_pass http://172.25.7.170/#/check_adjust/index;
}
#保单交接记录查询
location ^~ /#/Record_query/index {
proxy_pass http://172.25.7.170/#/Record_query/index;
}
#个人统计
location ^~ /#/account/index {
proxy_pass http://172.25.7.170/#/account/index;
}
#公司统计
location ^~ /#/company/index {
proxy_pass http://172.25.7.170/#/company/index;
}
#分单规则查询及设罿
location ^~ /#/rule_maintenance/index {
proxy_pass http://172.25.7.170/#/rule_maintenance/index;
}
#银行对应续收人员查询及设罿
location ^~ /#/people_setting_chacking/index {
proxy_pass http://172.25.7.170/#/people_setting_chacking/index;
}
#外勤组织对应续收 ں员查询及设翊 location ^~ /#/outside_org/index {
proxy_pass http://172.25.7.170/#/outside_org/index;
}
#保单分配标记属怿
location ^~ /#/baodan_parm/index {
proxy_pass http://172.25.7.170/#/baodan_parm/index;
}
#权限设置
location ^~ /#/xiTong_setting/member/index {
proxy_pass http://172.25.7.170/#/xiTong_setting/member/index;
}
#系统参数设置
location ^~ /#/system_setting/index {
proxy_pass http://172.25.7.170/#/system_setting/index;
}
#error_page 404 /404.html;
# redirect server error pages to the static page /50x.html
#
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
# proxy the PHP scripts to Apache listening on 127.0.0.1:80
#
#location ~ \.php$ {
# proxy_pass http://127.0.0.1;
#}
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
#
#location ~ \.php$ {
# root html;
# fastcgi_pass 127.0.0.1:9000;
# fastcgi_index index.php;
# fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name;
# include fastcgi_params;
#}
# deny access to .htaccess files, if Apache's document root
# concurs with nginx's one
#
#location ~ /\.ht {
# deny all;
#}
}
# another virtual host using mix of IP-, name-, and port-based configuration
#
#server {
# listen 8000;
# listen somename:8080;
# server_name somename alias another.alias;
# location / {
# root html;
# index index.html index.htm;
# }
#}
# HTTPS server
#
#server {
# listen 443 ssl;
# server_name localhost;
# ssl_certificate cert.pem;
# ssl_certificate_key cert.key;
# ssl_session_cache shared:SSL:1m;
# ssl_session_timeout 5m;
# ssl_ciphers HIGH:!aNULL:!MD5;
# ssl_prefer_server_ciphers on;
# location / {
# root html;
# index index.html index.htm;
# }
#}
}