python https request产生 nginx 499错误的解决

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python https request产生 nginx 499错误的解决相关的知识,希望对你有一定的参考价值。

首先是nginx上的一些配置

#参数都有所调整.目的是解决代理过程中出现的一些502 499错误
tcp_nopush on;
tcp_nodelay on;
proxy_ignore_client_abort on;


其次python代码中在建立连接与发送request时要有一定的timewait,比如time.sleep(1)

 

以上是关于python https request产生 nginx 499错误的解决的主要内容,如果未能解决你的问题,请参考以下文章

不知道你们遇到没遇到这种情况,谈谈ng-if/ng-repeat产生子作用域,ng-model取不到相应的值

Python 3:urllib 模块基本功能不起作用

python request 请求https报错问题

python request 请求https 挂代理报错

python requests

当 HTTPS 站点使用“ISRG Root X1”的 CA 时,Python3.4+requests 2.26 无法验证 SSL 证书 - 为啥?