1 后台服务以及负载均衡

  #设定负载均衡的服务器列表
  upstream myserver {
      #weigth参数表示权值,权值越高被分配到的几率越大
      
      server localhost:8102  weight=5;
      server localhost:8101  weight=5;
  }


2 server定义

server
  {
    listen 80;#监听端口
    server_name localhost;#域名
    index index.html index.htm index.php;
    #前端页面的存放目录
	root /usr/local/saas/front;
      location ~ .*\.(htm|html)?$
    {
      
    }

	# 所有以service开头的都转发给服务网关
	location /service/ {
		 proxy_pass http://myserver/;  
	}

    location ~ .*\.(gif|jpg|jpeg|png|bmp|swf|ico)$
    {
      expires 30d;
      access_log off;
    }
    location ~ .*\.(js|css)?$
    {
      expires 15d;
      access_log off;
    }
    access_log off;
  }


Logo

权威|前沿|技术|干货|国内首个API全生命周期开发者社区

更多推荐