Linux

Nginx 1.2.1 自定義404

  • April 18, 2016

我正在嘗試使用 nginx 自定義 404 錯誤。

首先在我的本地機器中,我將以下幾行添加到預設站點:

error_page 404 /custom_404.html;
   location = /custom_404.html {
           root /usr/share/nginx/html;
           internal;
   }

然後在 /usr/share/nginx/html 文件夾中,我創建了一個名為 custom_404.html 的 nes 文件。

然後我去了我的開發機器並嘗試做同樣的事情,但沒有任何運氣。

我注意到的一件事是,在本地我使用的是 1.9.3 版本,而在開發環境中使用的是 1.2.1 版本,而且 html forlder (/usr/share/nginx/html) 不存在。

最後一件事是,在開發中我使用 nginx 進行 django 應用程序,所以我的配置文件是這樣的:

server {
listen 80;
server_name test.example.net;

# output compression saves bandwidth
gzip  on;
gzip_http_version 1.1;
gzip_vary on;
gzip_comp_level 6;
gzip_proxied any;
gzip_types text/plain text/css application/json application/x-javascript text/xml application/xml application/xml+rss text/javascript;

client_max_body_size 10M;

if ($http_user_agent ~* '(blackberry|
   iemobile|iphone|ipod|mobile|Mobile|
   nokia|opera\s+mini|smartphone|symbian|webOS)') {
   set $mobile on;
}

if ($http_user_agent ~* 'ipad'){
   set $mobile off;
}

if ($host = example.net) {
   rewrite ^(.*)$ http://www.example.net$1 permanent;
}

if ($uri = '/') {
   set $home_es on;
}

if ($http_referer ~* ^http://test.example.net){
   set $home_es off;
}

if ($home_es = on) {
   rewrite ^(.*)$ /es$1 permanent;
}

gzip_buffers 16 8k;
gzip_disable "MSIE [1-6].(?!.*SV1)";

# media - folder in uri for admin static files
location /newmedia/ {
   expires 30d;
   root /media/jumbo_project;
}
location /media/ {
   expires 30d;
   alias /home/jumbo/media/jumbo_project/newmedia/;
}
location /static/ {
   expires 30d;
   root /media/jumbo_project;
}

error_page   502 503 504 500 /50x.html;

location /50x.html {
   internal;
}

location / {
   proxy_pass  http://localhost:8000;
   proxy_set_header X-Real-IP $remote_addr;
   proxy_set_header Host $host;
   proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
   proxy_read_timeout 60;
}

log_format log_time '$request_time $remote_addr - $remote_user [$time_local]  '
   '"$request" $status $body_bytes_sent '
   '"$http_referer" "$http_user_agent"';

access_log  /var/log/nginx/jumbo-wsgi.access.log log_time;
error_log   /var/log/nginx/jumbo-wsgi.error.log;

我已經用完了Google的結果來嘗試,所以如果有人能給我一個線索來繼續,那就太好了。

好吧,如果文件夾 /usr/share/nginx/html 不存在,那麼您將錯誤文件放在哪裡?Nginx 從你喜歡的任何文件夾中提供文件,你只需要告訴它是哪一個。這就是您使用 root 指令的原因。

因此,要麼創建文件夾 /usr/share/nginx/html 並將文件放在那裡,要麼將其放入例如 /what/ever/folder 並將您的配置更改為

error_page 404 /custom_404.html;

location = /custom_404.html { 
   root /what/ever/folder; 
   internal;
}

很簡單吧?

好吧,沒那麼簡單。我不認為將您的配置更改為命名位置(“@foo”)會改變任何內容。您所說的“連接並重新啟動”是什麼意思。重啟nginx還是django?

重新載入 nginx 配置時是否出現任何錯誤?

您是否檢查過,當您的 django 項目關閉時,您是否真的得到 404?我的配置中有一個 proxy_pass 來代理網路攝像頭。當此網路攝像頭不可用時,我會收到“502 Bad Gateway”。

如果我抓住它error_page 502 /error_page.html;

       location = /error_page.html  {
            root /what/ever/folder;
   }

我的自定義錯誤文件得到服務。

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