在 macOS 上安裝 Nginx 網頁伺服器

安裝

使用 brew 安裝 Nginx。

1
brew install nginx

啟動 Nginx 服務。

1
sudo nginx

停止 Nginx 服務。

1
sudo nginx -s stop

重啟 Nginx 服務。

1
sudo nginx -s reload

站點

修改 /usr/local/etc/nginx/nginx.conf 檔的 fastcgi_param 參數:

1
2
3
4
5
6
7
8
9
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
#
location ~ \.php$ {
root html;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}

/usr/local/var/www 目錄新增 index.php 檔:

1
phpinfo();

瀏覽網頁

前往 http://localhost:8080/index.php 瀏覽。