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.
know_sub/docker/know-sub-nginx/README.md

21 lines
754 B
Markdown

# 构建步骤
- 运行Dockerfile文件构建镜像 docker build -t know-sub-nginx:1.0.0 .
# 启动说明
- docker run -itd --name know-sub-nginx -p8819:80 -p 10080:80 \
- e KNOW_SUB_SERVERS=192.168.10.138:9201 know-sub-nginx:1.0.0
- itd : -itd : 无交互模式启动
- -p8819:80 : 端口映射 **必填**
- KNOW_SUB_SERVERS : 后端服务器地址,只允许有单个。 **必填**
- know-sub-nginx:1.0.0 构建的镜像名称
# 注意事项
- 如果需要对后端服务进行负载均衡把 /data/vp/nginx/conf/ 目录挂载出来然后创建配置文件servers.conf\
编辑配置文件:
```shell
upstream know_sub_servers {
server $KNOW_SUB_SERVERS;
}
```