使用docker搭建Nginx,并监听宿主机的80端口,配置反向代理

编程

下载镜像

docker pull nginx

启动容器

docker run --name nginx --net=host -v ~/nginx/conf:/etc/nginx/conf.d -d nginx

--net=host : 为了与宿主机通网络

-v ~/nginx/conf:/etc/nginx/conf.d : 外挂配置文件

配置nginx 反向代理

server{

listen 80;

server_name test.xxx.com #子域名

keepalive_timeout 1800;#请求超时时间

client_max_body_size 1024M;#最大文件上传

sendfile on;

location / {

proxy_pass http://localhost:81;

}

}

以上是 使用docker搭建Nginx,并监听宿主机的80端口,配置反向代理 的全部内容, 来源链接: utcz.com/z/512443.html

回到顶部