我们有两个虚拟服务器,它是开发和生产服务器。在开发服务器上一切正常,但是当项目部署到生产环境时,我们在某些项目页面上出现错误: 502 Bad Gateway ,我们正在使用php traits:
class Product extends PublicComponent
{
use FileUploader; // When this line was removed, all works
...
}
在我们使用相同配置的两台服务器上, nginx + apache + php5.4.14 。 PHP错误日志为空,并且apache错误日志显示:连接被拒绝。
有什么想法吗?