8月 31, 2023 - Linux, php开发    nginx请求报错504–upstream timed out (110: Connection timed out) while reading response header from upstream已关闭评论

nginx请求报错504–upstream timed out (110: Connection timed out) while reading response header from upstream

批量下载视频链接,开始用的是GET请求的方式,发现当选择的视频过多,当超过1600视频时,会因为参数过大导致报错.一般get参数的长度支持2k.
解决办法:
换成POST的形式,但是会出现超时的问题:如下
upstream timed out (110: Connection timed out) while reading response header from upstream, client: 121.xx.103.xxx, server: mpace.ivideoforce.com, request: “POST /api/v1/org/1/cp/75/video/bulk/export HTTP/1.1”, upstream: “fastcgi://127.0.0.1:9000”, host: “mpace.ivideoforce.com”, referrer: “https://xxxx.com/”
原因是fastcgi返回nginx的数据的超时时间.默认设置是60s.设置的大一点就可以正常返回了.

评论被关闭。