You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
virtual-patient/docker/nginx/README.md

17 lines
741 B
Markdown

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

# 构建步骤
- 把前端文件放html目录下
- 运行Dockerfile文件构建镜像 docker build -t vp/nginx:1.25 .
# 启动说明
- docker run -itd --name nginx-test3 -p8819:80 -p443:443 \
- e UPSTREAM_WEB_SERVERS=192.168.10.138:8899 \
-e UPSTREAM_MANAGE_SERVERS=192.168.10.138:8891 vp/nginx:1.25
- itd : -itd : 无交互模式启动
- -p8819:80 -p443:443 : 端口映射
- UPSTREAM_WEB_SERVERS : 后端服务器地址,只允许有单个
- UPSTREAM_MANAGE_SERVERS : 管理服务器地址,只允许有单个
- vp/nginx:1.25 构建的镜像名称
# 注意事项
- 前端文件放到html目录下
- 后端服务器地址和管理服务器地址需要和docker run命令中的参数保持一致