nginx自定义Java项目502页面

最近博客升级总是nginx原生的502页面,感觉有些不友好,特此研究了下502页面的配置

nginx 502配置
nginx 502配置

502页面核心配置

        #502 page
        error_page 502 /502.html;
        location =  /502.html {
         root /home/ubuntu/apps/html;
        }
  • error_page  定义错误页面;
  • 502 错误代码;
  • /502.html  当502http响应码发生时候访问页面;
  • location =  /502.html 只有当路径等于 /502.html才访问该location
  • root /home/ubuntu/apps/html; 定义文件502.html所在目录

简单说502.html文件全路径就是 root /home/ubuntu/apps/html/502.html

 

原创文章,作者:kepupublish,如若转载,请注明出处:https://blog.ytso.com/243831.html

(0)
上一篇 2022年4月11日
下一篇 2022年4月11日

相关推荐

发表回复

登录后才能评论