如何查找并编辑“Apache超时”?

如何查找并编辑“Apache超时”?

我试图查看我的服务器的 Apache 超时的默认值,但我在/etc/httpd/conf/httpd.conf.那么“超时”应该在哪里以及如何更改它的值?

操作系统是Centos 7 |阿帕奇版本:2.4.6

答案1

Apache 文档:超时 这应该写入服务器 httpd.conf:

TimeOut Num

来自上面链接的更多信息:

Syntax: TimeOut seconds
Default:    TimeOut 300
Context:    server config, virtual host

另外,如果您需要增加脚本执行时间,那就是

max_execution_time 60 

在 php.ini 中(数字为秒)

答案2

我打赌你正在使用 php-fpm。这是 Apache 2.4.6 中的一个已知错误。 Timeout 和 ProxyTimeout 被忽略,值 30s 被硬编码。

它已在 Apache 2.4.8 中修复。

这是您应该阅读的两个链接

bugzilla 错误帖子

如果您打算自己重新编译 Apache 的解决方案

相关内容