反向代理以及负载均衡配置 发表于 2018-05-24 12345678910111213141516worker_processes 1;events { worker_connections 1024;}http { upstream firsttest { server IP地址1; server IP地址2; } server { listen 80; location / { proxy_pass http://firsttest; } }} Ubuntu我的 nginx.conf 在路径 /etc/nginx 下面 CentOS我的 nginx.conf 也在这个路径下面