Commit 90223647 by lizefeng

新增 工资计算系统前后端站点转发

parent 89a8b417
......@@ -119,6 +119,24 @@ http {
}
}
# 转发工资计算系统 后端站点
server {
listen 7777;
server_name 111.230.84.223;
location / {
proxy_pass http://172.31.255.45;
}
}
# 转发工资计算系统 前端站点
server {
listen 7779;
server_name 111.230.84.223;
location / {
proxy_pass http://172.31.255.87;
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment