跳到主要内容

问题

2023年06月02日
柏拉文
越努力,越幸运

一、启动


1.1 启动权限

描述: nginx: [alert] could not open error log file: open() "/opt/homebrew/var/log/nginx/error.log" failed (13: Permission denied)

分析:

  • 可能是当前用户对该位置没有写入权限

解决: 使用命令以 root 权限启动

sudo nginx

1.2 访问权限

描述: nginx: [emerg] open() "/opt/homebrew/Cellar/nginx/1.25.0/logs/access.log" failed (2: No such file or directory)

分析: 可能是没有对应文件夹 /opt/homebrew/Cellar/nginx/1.25.0/logs/

解决: 根据错误提示, 创建对应文件夹即可

mkdir /opt/homebrew/Cellar/nginx/1.25.0/logs/

二、访问


2.1 403 Forbidden

分析:

解决: