美文网首页程序猿的进阶屋
Mac Nginx 安装与配置

Mac Nginx 安装与配置

作者: dreamer_lk | 来源:发表于2021-07-26 17:36 被阅读0次

    1. 安装 Nginx

    brew install nginx
    

    2. 启动 Nginx

    nginx
    

    3.停止 Nginx

    nginx -s stop
    

    Tips:更多命令可输入nginx -h查看。

    Nginx 启动后,默认端口为 8080 , 可直接通过浏览器访问:http://localhost:8080/即可

    4. 配置 Nginx

    /usr/local/etc/nginx/nginx.conf (配置文件路径)
    /usr/local/var/www (服务器默认路径)
    

    5. 更新 Nginx

    nginx -s reload
    

    6. 负载均衡

    http{
      upstream balance{
         ip_hash;
         server 10.10.10.1 weight=1;
         server 10.10.10.2 weight=2;
      }
    
      server{
         listen 8080;
         location /{
            proxy_pass http://balance;
         }
      }
    }
    

    相关文章

      网友评论

        本文标题:Mac Nginx 安装与配置

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