Ubuntu

NGINX:內部重定向周期:配置需要幫助

  • December 28, 2012

我正在嘗試設置一個非常簡單的 nginx 配置來提供靜態內容。這是我的配置設置。每當我嘗試訪問不存在的文件而不是 404 時,我都會收到 HTTP 500。請讓我知道我做錯了什麼?

2012/12/21 11:15:14

$$ error $$1906#0:*41 重寫或內部重定向周期,同時內部重定向到“/index.html”,客戶端:127.0.0.1,伺服器:i.domain.com,請求:“GET /favicon.ico HTTP/1.1”,主機:“i.domain.com”

server {
       listen   127.0.0.1:81; ## listen for ipv4; this line is default and implied
       root /project/;
       index index.html index.htm;
   location ~* \.(jpg|jpeg|gif|png|css|js|ico|xml)$ {
   access_log      off;
   log_not_found   off;
   expires         360d;
   }
       server_name i.domain.com;
       location / {
               try_files $uri $uri/ /index.html;
       }
       error_page 404 /404.html;
       error_page 500 502 503 504 /50x.html;
       location = /50x.html {
               root /usr/share/nginx/www;
       }
}

看來你有2個問題。

  1. 您沒有 /index.html 文件
  2. 您沒有 /404.html 文件

當發出請求時,它會通過 try files 過程。最後,它意識到 index.html 不存在並繼續返回 404。要完成該任務,它現在必須獲取 404.html 並重新開始請求。它檢查 $ url (where $ url 定義為“404.html”),然後是 $url/,然後是 index.html 再次進入無限循環。

當您進入 inf 循環時,這是一個內部錯誤。因此,適當地提供錯誤 500。

引用自:https://serverfault.com/questions/459917