美文网首页
nginx部署项目

nginx部署项目

作者: 周六不算加班 | 来源:发表于2018-08-17 16:39 被阅读27次

1、官网下载Nginx
http://nginx.org/en/download.html
网络不好的时候下载容易中断,要是中断了可能会出一些问题,需要重新下载。

2、配置文件的调整

     /**
      *负载均衡
      *weight:权重
      */
    upstream aaa{
        server localhost:8812  weight=1;
        server localhost:8813  weight=2;    
    }

     server {
        listen       80;
        server_name  localhost;

        #charset koi8-r;

        #access_log  logs/host.access.log  main;

        location / {
               #   root   html;
               #   index  hm.html;
               proxy_pass http://aaa;
          }
   }

相关文章

网友评论

      本文标题:nginx部署项目

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