gpt4 book ai didi

nginx - Nginx在哪里存储默认错误页面

转载 作者:行者123 更新时间:2023-12-04 13:17:03 25 4
gpt4 key购买 nike

nginx在哪里将其输出的默认错误页面存储在磁盘上? IE。标准的404看起来像:

找不到404

找不到404
Nginx的





希望这些不是的,而是硬编码到nginx源中的。谢谢。

最佳答案

在nginx目录中 check out html文件夹-应该有50x页。

我相信默认情况下,所有“特殊页面”,包括404页面都是硬编码的

static char ngx_http_error_404_page[] =
"<html>" CRLF
"<head><title>404 Not Found</title></head>" CRLF
"<body>" CRLF
"<center><h1>404 Not Found</h1></center>" CRLF
;

资料来源: https://github.com/nginx/nginx/blob/release-1.15.8/src/http/ngx_http_special_response.c#L132

但可以自定义:
server {
...
error_page 404 /404.html;
...
}

关于nginx - Nginx在哪里存储默认错误页面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13446916/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com