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
也在这个路径下面
网友评论