[Mac] 關於 nginx 和 php-fpm 的 user group 設定
[Mac] 關於nginx 和 php-fpm 的 user group 設定
- 路徑:/usr/local/etc/php/7.2/php-fpm.d
- 檔案:www.conf
- 修改:
- user = <username>
- group = staff
- 路徑:/usr/local/etc/nginx
- 檔案:nginx.conf
- 修改:
- 修改檔案第一行為
- user <username> staff;
- 修改檔案第一行為
- 檢查 nginx 文法
- sudo
- 重啟nginx
- brew services restart nginx
- 重啟php-fpm
- brew services restart php@7.2
永遠感謝前人的辛勞
附上資料來源:https://www.dionysopoulos.me/set-up-nginx-and-php-for-development-on-mac-os-x/