美文网首页
Nginx的简单配置

Nginx的简单配置

作者: JohnShen | 来源:发表于2015-12-28 15:17 被阅读19次

    下载Nginx安装包

    从nginx的官网下载对应的Nginx版本,并将其解压。
    下载地址:http://nginx.org/en/download.html

    使用upstream设置负载均衡列表

    server {
      listen 80;
      include proxy.conf;
      server_name openapi.xxxxxx.com;
      location ^~ /suggest/{
        proxy_pass  http://suggest.elong.com/;
      }
    
      location /{
        return 402;
      }
    
      location ~* ^/test/ {
        return 403;
      }
    }
    
    upstream suggest.elong.com {
      server 192.168.17.46:9102;
    }
    

    相关文章

      网友评论

          本文标题:Nginx的简单配置

          本文链接:https://www.haomeiwen.com/subject/vbgbhttx.html