Commit 788faaa4 by 傅伟强-富德

Update nginx

1 parent bc34da4e
Showing with 70 additions and 158 deletions
...@@ -34,7 +34,7 @@ http { ...@@ -34,7 +34,7 @@ http {
#server { #server {
# listen 81; # listen 81;
# server_name 172.25.7.170; # server_name 172.25.7.170;
#地图服务 #地图服务
# location ^~ /iserver { # location ^~ /iserver {
# proxy_pass http://172.25.7.175:80; # proxy_pass http://172.25.7.175:80;
# } # }
...@@ -61,198 +61,110 @@ http { ...@@ -61,198 +61,110 @@ http {
upstream gateway upstream gateway
{ {
server 172.25.7.182:80; server 172.25.7.182:80;
server 172.25.7.183:80; server 172.25.7.183:80;
} }
upstream frontpage upstream frontpage
{ {
server 172.25.7.170:52000; server 172.25.7.170:52000;
} }
upstream consumer upstream consumer
{ {
server 172.25.7.171:8090; server 172.25.7.171:8090;
server 172.25.7.172:8090; server 172.25.7.172:8090;
server 172.25.7.173:8090; server 172.25.7.173:8090;
} }
server { server {
listen 8080; listen 8080;
server_name 172.25.7.170; server_name 172.25.7.170;
access_log /data/funde/nginxlog/nginx8080.log; access_log /data/funde/nginxlog/nginx8080.log;
rewrite_log on; rewrite_log on;
location / { location / {
if ($request_uri ~ "v1"){ if ($request_uri ~ "v1"){
set $zone $1; set $zone $1;
proxy_pass http://gateway; proxy_pass http://gateway;
} }
if ($request_uri ~ "gras"){ if ($request_uri ~ "gras"){
set $zone $1; set $zone $1;
proxy_pass http://consumer; proxy_pass http://consumer;
} }
} }
} }
server { server {
listen 8082; listen 8082;
server_name 172.25.7.170; server_name 172.25.7.170;
access_log /data/funde/nginxlog/nginx8082.log; access_log /data/funde/nginxlog/nginx8082.log;
rewrite_log on; rewrite_log on;
location / { location / {
proxy_pass http://frontpage; proxy_pass http://frontpage;
} }
} }
server { server {
listen 80; listen 80;
server_name 172.25.7.170; server_name 172.25.7.170;
access_log /data/funde/nginxlog/nginx80.log; access_log /data/funde/nginxlog/nginx80.log;
rewrite_log on; rewrite_log on;
#charset koi8-r; #charset koi8-r;
#access_log logs/host.access.log main; #access_log logs/host.access.log main;
location ~* \.(html|htm|ico|png|jpg|jpeg|js|css|bmp)$ { location ~* \.(html|htm|ico|png|jpg|jpeg|js|css|bmp)$ {
proxy_pass http://frontpage; proxy_pass http://frontpage;
#try_files $uri @iserver_file; #try_files $uri @iserver_file;
if ($request_uri ~ "v1"){ if ($request_uri ~ "v1"){
set $zone $1; set $zone $1;
proxy_pass http://gateway; proxy_pass http://gateway;
} }
if ( $request_uri ~* /iserver ) { if ( $request_uri ~* /iserver ) {
proxy_pass http://172.25.7.175; proxy_pass http://172.25.7.175;
} }
if ($request_uri ~ "gras"){ if ($request_uri ~ "gras"){
set $zone $1; set $zone $1;
proxy_pass http://consumer; proxy_pass http://consumer;
} }
} }
#location @iserver_file { #location @iserver_file {
# proxy_pass http://172.25.7.175; # proxy_pass http://172.25.7.175;
#} #}
#paas服务
location ^~ /v1 { location ^~ /v1 {
proxy_pass http://gateway; proxy_pass http://gateway;
} }
location ^~ /gras { #后台接口
proxy_pass http://consumer; location ^~ /gras {
proxy_pass http://consumer;
} }
#地图服务 #地图服务
location ^~ /iserver { location ^~ /iserver {
proxy_pass http://172.25.7.175:80; proxy_pass http://172.25.7.175:80;
#/iserver/services/funde/rest/maps/China; #/iserver/services/funde/rest/maps/China;
} }
#登录
location ^~ /login { #文件下载接口
proxy_pass http://172.25.7.170/index.html; location ^~ /fileDownload {
proxy_pass http://consumer;
} }
#主页
#前端页面
location ^~ /#/ { location ^~ /#/ {
proxy_pass http://172.25.7.170/#/; proxy_pass http://frontpage;
}
#保单落图匿
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;
#}
} }
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!