mac-安装nginx,实现前端访问80端口后端转8080

mac下默认无法访问1000以下的端口,前端工程在访问时,要么修改成后端的端口,要么用nginx做一层代理,下面介绍用nginx做代理的方法

1、安装nginx,前提安装了homebrew(安装方法),

2、安装nginx,

brew install nginx

3、修改配置文件,nginx配置文件位置:/opt/homebrew/etc/nginx/nginx.conf

nginx默认端口是8080,需要修改成80,部门截图如下,红色为修改的地方

server {

        listen       80;

        server_name  localhost;

        #charset koi8-r;

        #access_log  logs/host.access.log  main;

        location / {

        proxy_pass http://127.0.0.1:8080;

        }

}

4、启动nginx

sudo nginx

5、查询nginx是否启动成功

ps -ef | grep nginx

 结果如下,表示启动成功,其中

nginx:mater process nginx 表示nginx的master线程

nginx:worker process 表示nginx的工作线程线程

  0 92505     1   0 10:06上午 ??         0:00.00 nginx: master process nginx
   -2 92506 92505   0 10:06上午 ??         0:00.00 nginx: worker process
  501 92549 30199   0 10:06上午 ttys000    0:00.00 grep nginx

 6、停止nginx

sudo nginx -s stop

7、修改配置文件后,让配置生效

sudo nginx -s reload

你可能感兴趣的:(linux,nginx,前端,nginx,运维)