反向代理以及负载均衡配置

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
worker_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 也在这个路径下面