码迷,mamicode.com
首页 > 系统相关 > 详细

Mac安装nginx 流程配置

时间:2021-07-02 15:42:25      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:head   work   方法   list   nginx 配置   完成   nbsp   conf   pre   

http://nginx.org/en/download.html

```
mac安装 nginx

Mac:brew install nginx
```



出错提示。参考一下链接 

#### mac环境下brew command not found错误的解决方法

http://www.chenxm.cc/article/1071.html



nginx 配置文件:

Mac: /usr/local/etc/nginx/nginx.conf



```
测试配置文件格式是否正确 :nginx-t

启动: nginx

重启:nginx -s reload
```



下载完成后。

第一步:进入控制台,sudo vi /usr/local/etc/nginx/nginx.conf





进入修改 3出地方

1.修改核心

  #user  nobody;


  worker_processes  2; 

  #多核心的话就写2或者几几核


 

2.修改监听 端口号

  server {


        listen       8080;


        server_name  localhost;

   #.....

  }

3.屏蔽原有location 新增代理地址

    #location / {

?    #   root  html;

?    #   index index.html index.htm;

?    # }

?    location / {

?    proxy_pass http://localhost:8001;

?    }

?    location /api/ {

?    proxy_pass http://localhost:8000;

?    proxy_set_header Host $host;

?    }

 

Mac安装nginx 流程配置

标签:head   work   方法   list   nginx 配置   完成   nbsp   conf   pre   

原文地址:https://www.cnblogs.com/xnblog/p/14960697.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!