lumanager使用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的版本太低了
上一篇:如何将数据转移至新的服务器?
下一篇:phpMyAdmin-3.4.4配置详解