使用nginx代理请求到百度

使用nginx代理请求到百度

首先打开虚拟机VM,启动一个centOS7系统的服务器,使用finalShell或者XShell连接该服务器,然后配置nginx配置文件

宿主机nginx配置文件(nginx.conf)

server {
        listen  80;
        location / {
           proxy_pass https://www.baidu.com;
        }
   }
docker run --name demo -p 9100:80 -d -v 宿主机nginx配置文件目录:/etc/nginx/conf.d nginx

访问 服务器ip:9100 即可访问到百度

你可能感兴趣的:(docker)