[root@localhost ~]# vim nginx.conf   

user  nginx;
worker_processes  1;

error_log  /var/log/nginx/error.log warn;
pid        /var/run/nginx.pid;

events {
    worker_connections  1024;
}

http {

    upstream pools {
        server 10.10.0.110:8080 weight=1;
        server 10.10.0.110:8081 weight=1;
    }

    server {
        listen       80;
        server_name  localhost;
        location / {
            root   html;
            index  index.html index.htm;
            proxy_pass http://pools;
            proxy_set_header Host  $host;
        }

    }
}

 

相关文章:

  • 2022-12-23
  • 2021-06-26
  • 2021-05-23
  • 2021-06-22
猜你喜欢
  • 2021-10-13
  • 2021-12-10
  • 2022-01-08
  • 2022-01-14
  • 2021-07-05
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案