如何修复 Apache 服务器:(20014)内部错误:AH01102:从远程服务器 127.0.0.1:5000 读取状态行时出错

如何修复 Apache 服务器:(20014)内部错误:AH01102:从远程服务器 127.0.0.1:5000 读取状态行时出错

我在 apache 中使用 flask 服务器。运行一个准备脚本然后下载一个 xml 文件。这个脚本运行正常,但是如果脚本持续时间超过 80 秒它就会停止并显示 http 错误 502,并且 xml 文件未正确关闭,我收到此消息:

该页面包含以下错误:第 2373 行第 426 列的错误:文档末尾的额外内容以下是直到第一个错误为止的页面效果图。

日志文件报告:

引用

2022-10-11 21:42:54 错误 xxx.xxx.xxx.xxx 502 GET /email/xxxxxxx.com HTTP/1.1 Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36 1.68 K Apache SSL/TLS 访问 2022-10-11 21:43:25 错误 xxx.xxx.xxx.xxx (20014)内部错误(特定信息不可用):AH01102:从远程服务器 127.0.0.1:5000 读取状态行时出错 Apache 错误 2022-10-11 21:43:25 错误 xxx.xxx.xxx.xxx AH00898:从 /email/ 返回的远程服务器读取时出错[电子邮件保护] Apache 错误

我已经使用 ssh 终端直接在服务器中尝试了该脚本,并且它执行时没有任何错误。

conf 设置:{<Proxy *> Order denied,allow Allow from all ProxyPreserveHost On <Location "/email"> ProxyPass "http://127.0.0.1:5000/email" ProxyPassReverse "http://127.0.0.1:5000/email" } 我尝试了一些设置:retry=1 connectiontimeout=180 timeout=180 keepalive=on 但没有结果

相关内容