一、使用homebrew安装Nginx

1. 安装nginx,查看nginx安装和配置路径

```bash

brew install nginx

```

使用brew安装完成后,nginx的安装路径为:

```

/usr/local/Cellar/nginx

```

配置文件路径为:

```

/usr/local/etc/nginx/nginx.conf

```

2. 查看nginx信息

```bash

brew info nginx

```

3. 使用homebrew方式启动和关闭nginx

- 启动:

```bash

brew services start nginx

```

- 重启:

```bash

brew services restart nginx

```

- 停止:

```bash

brew services stop nginx

```

4. 直接使用nginx启动

- 启动:

```bash

sudo nginx

```

- 关闭:

- `stop`表示立即停止nginx,不保存相关信息;

- `quit`表示正常退出nginx,并保存相关信息。

以下是根据您提供的内容重构后的 Nginx 配置文件,包括修改端口号、指定字符集、访问日志等设置:

```nginx

server {

listen 8887; #此处可修改访问的端口号

server_name localhost;

charset koi8-r; #指定字符集为 koi8-r

access_log logs/host.access.log main; #指定访问日志文件和记录方式

location / {

root /usr/local/Cellar/nginx/1.23.1/html/dist/; #此处必须替换为nginx下打包得到dits文件夹路径

index index.html index.htm;

}

}

```

关于局域网设备对 Vue 项目的访问,请按照以下步骤操作:

1. 在终端输入 `ifconfig | grep "inet"`,查看 IP 地址。例如输出结果为:`192.168.xx.xxx`。

2. 直接使用 `192.168.xx.xxx:8030`(将 `xx.xxx` 替换为实际的 IP 地址)进行访问。