lumanager使用nginx和完全使用nginx网站出现502的解决方法

作者: 蓝鹰 分类: LuManager 发布时间: 2013-10-18 14:24 ė123 浏览数 6lumanager使用nginx和完全使用nginx网站出现502的解决方法已关闭评论

使用nginx和完全使用nginx,出现502的朋友。

看解决方法

第一套路线:
编辑网站,在nginx扩展的location段中,加入以下三行

proxy_connect_timeout 300;   
proxy_send_timeout 300;   
proxy_read_timeout 300;

如果还不能解决问题走第二套路线:

将php.ini里面的

[eaccelerator]   
;zend_extension="/usr/local/php_fcgi/lib/php/extensions/no-debug-non-zts-20060613/eaccelerator.so"  
extension_dir="/usr/local/php_fcgi/lib/php/extensions/no-debug-non-zts-20060613/"  
extension = "eaccelerator.so"  
eaccelerator.shm_size="8"  
eaccelerator.cache_dir="/tmp"  
eaccelerator.enable="1"  
eaccelerator.optimizer="1"  
eaccelerator.check_mtime="1"  
eaccelerator.debug="0"  
eaccelerator.filter=""  
eaccelerator.shm_max="0"  
eaccelerator.shm_ttl="0"  
eaccelerator.shm_prune_period="0"  
eaccelerator.shm_only="0"  
eaccelerator.compress="1"  
eaccelerator.compress_level="9"

删除

是因为eaccelerator的版本太低了

本文出自 蓝鹰博客,转载时请注明出处及相应链接。

本文永久链接: http://www.lanyingblog.com/blog/1142.html

Ɣ回顶部