首页 > 代码库 > nginx+php-fpm 502 bad gateway
nginx+php-fpm 502 bad gateway
输出日志配置:
http://blog.csdn.net/wzy_1988/article/details/8486888
解决方案:
http://www.cnblogs.com/jackluo/p/3366612.html
有关file_get_contents引起的502解决方案:
http://www.111cn.net/phper/php-function/55873.htm
http://www.qetee.com/share/php-fpm-cpu100.html
使用自己封装的file_get_content函数代替系统自带的file_get_contents
function _file_get_content($str) { $ctx = stream_context_create(array( ‘http‘ => array( ‘timeout‘ => 10 //设置一个超时时间,单位为秒 ) ) ); return file_get_contents($str, 0, $ctx); }
nginx+php-fpm 502 bad gateway
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。