mac 解決Nginx出現403 forbidden的方法
403 就是許可權問題,
在
/opt/local/etc/nginx/nginx.conf
開始加一行user root;
沒用報
nginx: [emerg] getgrnam("root") failed in xxx:1
繼續搜尋發現有人這樣做在/usr/local/nginx/conf/nginx.conf開始加一行
user root root;還是報錯nginx: [emerg] getgrnam("root") failed in /usr/local/nginx/conf/nginx.conf:1
最後
發現應該加 user root owner;
重新載入配置檔案
nginx -s reload
成功執行,問題解決。