upstream blog{
server localhost:8088 weight=2;
server localhost:8089 weight=1;
}
weight代表权重
location / {
# First attempt to serve request as file, then
# as directory, then fall back to displaying a 404.
proxy_pass http://blog;
try_files $uri $uri/ =404;
}
location ~ .* {
proxy_pass http://blog;
proxy_set_header Host $http_host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
评论