码迷,mamicode.com
首页 >  
搜索关键字:nginx错误    ( 109个结果
Nginx Upstream timed out (110: Connection timed out)
在Nginx错误日志中,有大量的下列信息: Upstream timed out (110: Connection timed out) while reading response header from upstream 这种情况主要在厦门两种情况下发生: 1. nginx proxy 需要适当 ...
分类:其他好文   时间:2016-07-01 13:11:43    阅读次数:199
nginx 502 错误
今天帮朋友处理一个程序报错,重启nginx服务之后,发现首页打不开了,但是静态文件可以打开 经检查nginx 服务器正常运行,重启无数次仍然502错误,考虑到静态文件可以打开,怀疑可能是php 脚本程序没有正常运行,运势 ps -aux |grep php-fpm 没有相关进程,进一步产看网络链接状 ...
分类:其他好文   时间:2016-06-22 23:38:46    阅读次数:190
记一次Nginx 400错误
在一个非CDN的域名下有一个页面,需要请求CDN域名下的资源。所以在CDN的那台源站的Nginx上设置了 add_header 'Access-Control-Allow-Headers' 'X-Requested-With' add_header 'Access-Control-Allow-Met... ...
分类:其他好文   时间:2016-05-31 22:33:12    阅读次数:304
问题:connect() failed (111: Connection refused) while connecting to upstream
问题描述:服务器重启之后,服务器也正常运行,发现网站访问不了,后来查看nginx错误日志(/var/log/nginx/error.log)2016/05/1310:47:32[error]7688#0:*8connect()failed(111:Connectionrefused)whileconnectingtoupstream,client:****.****.****.33,server:,request:"GETurl..
分类:其他好文   时间:2016-05-13 15:22:02    阅读次数:5137
Nginx 502gateway错误故障解决
默认WDCP是以端口号作为转发的修改成socket方式比较好。server{ listen80; server_nameadmin.yeshuai.com; root/www/web/admin_yeshuai_com/public_html; indexindex.htmlindex.phpindex.htm; error_page400/errpage/400.html; error_page403/errpage/403.html; error_page404/..
分类:其他好文   时间:2016-05-10 11:11:57    阅读次数:195
nginx 403错误
1、出现此种错误的原因有可能是所有者对目录没有写的权限,此时可用chmod 777 目录名 先完全放开权限,如果问题解决,则在慢慢缩小访问权限。解决办法:chown -R nginx_user:nginx_user /htdocs2、未设置index的类型,解决办法在nginx.conf中的inde ...
分类:其他好文   时间:2016-04-28 00:06:58    阅读次数:152
nginx.conf配置文件详解:
[root@nginx-masternginx]#vim/etc/nginx/nginx.confusernginxnginx;#nginx启动的用户worker_processes6;#如果负载以cpu密集型应用为主,如SSL或压缩应用,则worker数应与cpu数相同。error_log/var/log/nginx/error.log;nginx错误日志存放路径error_log/var/log/nginx/error.lo..
分类:其他好文   时间:2016-03-23 11:30:37    阅读次数:184
Nginx错误页面隐藏版本号
一、隐藏Nginx服务器出现403、404错误访问页面时显示的Nginx版本号1、在nginx虚拟机主机配置文件中的server模块中增加一行server_tokens指令,指定关闭(off)显示版本号server{ listen80; server_name192.168.1.250; indexindex.htmlindex.htmindex.phpindex.jsp; server_toke..
分类:其他好文   时间:2016-02-16 01:21:34    阅读次数:231
python https request产生 nginx 499错误的解决
首先是nginx上的一些配置#参数都有所调整.目的是解决代理过程中出现的一些502 499错误 tcp_nopush on;tcp_nodelay on;proxy_ignore_client_abort on;其次python代码中在建立连接与发送request时要有一定的timewait,比如t...
分类:编程语言   时间:2016-01-27 12:28:17    阅读次数:169
上传文件 nginx 413错误
nginx : 413 Request Entity Too Large上传文件过程发生413 Request Entity Too Large错误,翻译为请求实体过大,断定为nginx限制了请求体大小,翻看nginx文档发现default: client_max_body_size 1mclien...
分类:Web程序   时间:2015-12-31 12:26:23    阅读次数:160
109条   上一页 1 ... 6 7 8 9 10 11 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!