opt: optimize the build script and docker-compose yaml file

This commit is contained in:
RockYang
2023-07-31 17:31:02 +08:00
parent c6062ee70e
commit 54fe4b7588
5 changed files with 9 additions and 9 deletions

View File

@@ -35,12 +35,12 @@ server {
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection $connection_upgrade;
proxy_pass http://172.28.173.76:6789; # 这里改成后端服务的内网 IP 地址
proxy_pass http://172.22.11.47:5678; # 这里改成后端服务的内网 IP 地址
}
# 静态资源转发
location /static/ {
proxy_pass http://172.28.173.76:6789; # 这里改成后端服务的内网 IP 地址
proxy_pass http://172.22.11.47:5678; # 这里改成后端服务的内网 IP 地址
}
}
}
}