Nginx 配置轮询服务

通常我们应用Nginx做代理时,用到它的轮询服务

#设置轮询名称

upstream linuxidc{

server 127.0.0.1:8080  #本机的apache服务

}

server {
 listen 80;
 server_name test.com;
 root /test;
 location / {
 proxy_set_header Host $host;
 proxy_set_header X-Real-IP $remote_addr;
 proxy_set_header X-Forwraded-For $remote_addr;
 proxy_pass http://php_server;
 }

#当我们路径中 包含 linuxidc 时  就会访问到 127.0.0.1:8081/linuxidc  这个服务  本机对应的tomcat的端口
location /linuxidc  {
 proxy_pass http://127.0.0.1:8081/linuxidc; proxy_set_header Host $host; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}

#如果没有匹配到上面的linuxidc  那么就进入到我们下面的那个 服务  再访问到我们本机的apache服务器
location / {

proxy_pass http://linuxidc;
}

}

更多Nginx相关教程见以下内容

Nginx 的详细介绍:请点这里
Nginx 的下载地址:请点这里

相关推荐