系统: 阿里云ECS Ubuntu 16.04.2 LTS
软件: docker、lnmp镜像
当PHP出现语法错误时,页面就出现: 目前无法处理此请求。 HTTP ERROR 500
502 Bad Gateway2019-09-23 15:23:33
500错误大概是php代码有问题了
error_reporting(“E_ALL”)
ini_set(“display_errors”, “on”)
添加这两条代码
让错误暴露出来
再根据错误信息
逐一排查
学习ing2017-07-01 09:14:20
由于php.ini配置文件中错误显示关闭导致.
将下值由Off 变更为 On
display_errors = On
display_startup_errors = On