我安裝nginx後給sbin/nginx設定了屬主為root,和suid權限,以便監聽80埠。
chown root sbin/nginx
chmod u+s sbin/nginx
但啟動後訪問localhost 80埠報錯: 403 Forbidden
nginx相關設定檔內容如下:
server {
listen 80;
server_name localhost;
#charset koi8-r;
charset utf-8;
#access_log logs/host.access.log main;
location / {
root html;
index index.html index.htm;
}
#error_page 404 /404.html;
# redirect server error pages to the static page /50x.html
#
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
錯誤日誌訊息為:
[error] 4633#0: *1 open() "nginx/html/favicon.ico" failed (13: Permission denied), client: 127.0.0.1, server: localhost, request: "GET /favicon.ico HTTP/1.1", host: "localhost", referrer: "http://localhost/"
html目錄的權限如下,該目錄下有對應的index檔
drwxrwxrwx@ 4 xxxxx staff 136 Nov 16 21:16 html
請問這是什麼問題,百度之後說是權限問題,但我怎麼改也解決不了啊?
我的系統是mac。
我想大声告诉你2017-05-16 17:14:19
在nginx設定檔頭部加上user root; 試試看,不行的話 看看你html目錄下檔案的使用者和群組是什麼?然後把啟動用戶改成目錄所屬的用戶試試看。