basedata-process上线
代理接收数据路径
- 修改221nginx 配置文件
location /dataLSInterface/tenderProject.do {
proxy_set_header Host $host;
proxy_set_header Content-Type application/xml;
proxy_pass http://127.0.0.1:8060/;
proxy_read_timeout 3600s;
rewrite .* /li-shui/tender-project break;
}
location /dataLSInterface/tenderBulletin.do {
proxy_set_header Host $host;
proxy_set_header Content-Type application/xml;
proxy_pass http://127.0.0.1:8060/;
proxy_read_timeout 3600s;
rewrite .* /li-shui/tender-bulletin break;
}
location /dataLSInterface/bidSection.do {
proxy_set_header Host $host;
proxy_set_header Content-Type application/xml;
proxy_pass http://127.0.0.1:8060/;
proxy_read_timeout 3600s;
rewrite .* /li-shui/bid-section break;
}
location /dataLSInterface/tenderDoc.do {
proxy_set_header Host $host;
proxy_set_header Content-Type application/xml;
proxy_pass http://127.0.0.1:8060/;
proxy_read_timeout 3600s;
rewrite .* /li-shui/tender-doc break;
}
启动springboot服务
run-server [-f (jar包路径)] -e prod