Apple M3 Pro Brew 安装和配置 nginx

硬件:Apple M3 Pro 14寸 2013年11月
系统: macos Sonoma

安装

确保 Homebrew 已更新:

brew update

使用 Homebrew 安装 Nginx:

brew install nginx

启动和管理 Nginx

安装完成后,你可以通过以下命令启动 Nginx:

brew services start nginx

检查 Nginx 的状态

brew services list

停止 Nginx 服务:

brew services stop nginx

重新启动 Nginx 服务:

brew services restart nginx

配置 Nginx

Nginx 的配置文件通常位于 /opt/homebrew/etc/nginx/nginx.conf。你可以使用你喜欢的文本编辑器(如 nano 或 vim)进行编辑:

vi /opt/homebrew/etc/nginx/nginx.conf

在编辑配置文件时,请注意以下几个常用的配置部分:

• server 块:配置服务器的端口和根目录等。

• location 块:配置 URL 路径和相应的处理方式。

验证 Nginx 是否运行

在浏览器中打开 http://localhost:8080(默认端口是 8080),如果看到 Nginx 的欢迎页面,说明 Nginx 已成功运行。

服务配置

server {
    listen       80;
    server_name  aa.localhost;

    # 根目录设置
    location / {
        root   html;
        index  index.html index.htm;
    }
}

日志

默认情况下,Nginx 的配置文件位于 /opt/homebrew/etc/nginx/nginx.conf。你可以查看这个配置文件以确认日志文件的位置:

nano /opt/homebrew/etc/nginx/nginx.conf

在配置文件中,你可以找到类似于以下的日志配置:

error_log /opt/homebrew/var/log/nginx/error.log;
access_log /opt/homebrew/var/log/nginx/access.log;

发表评论