错误页面不存在时的Nginx错误页面

Nginx error page when error page does not exist

我想为我服务器上托管的每个域定制错误页面。

我的目录结构如下

data
   defaults
      error.html
   example.com
      misc
         error.html
   example.net
   ...

现在我想显示 misc/error.html 是否存在被访问的域名,否则显示 default/error.html.

我目前无法使用的是以下内容。它不起作用,因为如果找不到错误页面 (misc/error.html),它只会显示默认的 nginx 404 页面(即使错误甚至不是 404 错误)。

    server_name ~^(www\.)?(?<domain>.+)$;

    location / {
        root /data/$domain;
        try_files $uri $uri/ =404;
        index index.html index.htm index.php;
    }

    error_page 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 421 422 423 424 425 426 428 429 431 451 500 501 502 503 504 505 506 507 508 510 511 @error;
    location @error {
        internal;
        ssi         on;
        auth_basic  off;
        root        /data;
        try_files   /$domain/misc/error.html /defaults/error.html;
    }

最后一个 try_files 参数的处理方式与所有其他参数不同。如果仔细阅读 documentation,您会发现它可能是 HTTP 错误代码、命名位置 ID 或 re-evaluate 的新 URI,并且您的 /defaults/error.html 被视为新 URI .然后 nginx 尝试通过主 location / { ... } 搜索 /data/$domain/defaults 目录下的 error.html 文件来提供它。由于 /data/$domain/defaults/error.html 文件不存在,它 returns 一个 built-in 404 错误页面(它不会两次尝试自定义错误页面)。将您的 try_files 指令从错误处理程序更改为类似

的内容
try_files /$domain/misc/error.html /defaults/error.html =404;

应该可以解决这个问题。