首頁  >  問答  >  主體

nginx啟動訪問時提示403

我安裝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。

習慣沉默習慣沉默2734 天前542

全部回覆(3)我來回復

  • 高洛峰

    高洛峰2017-05-16 17:14:19

    你的index.html檔案的權限是什麼呀,可能是你沒給資料夾內的檔案權限。

    回覆
    0
  • 我想大声告诉你

    我想大声告诉你2017-05-16 17:14:19

    在nginx設定檔頭部加上user root; 試試看,不行的話 看看你html目錄下檔案的使用者和群組是什麼?然後把啟動用戶改成目錄所屬的用戶試試看。

    回覆
    0
  • 大家讲道理

    大家讲道理2017-05-16 17:14:19

    先關防火牆試試看,
    不行就把SELinux服務也關了

    回覆
    0
  • 取消回覆