我正在尝试使用 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;
我已经用完了谷歌的结果来尝试,所以如果有人能给我一个线索来继续,那就太好了。