Apache 2.4-mod_ratelimit破坏了mod_autoindex

时间:2018-08-29 19:02:12

标签: apache httpd.conf

我正在尝试使用mod_ratelimit在整个apache服务器上启用带宽限制。

如果我将以下内容添加到我的apache2.conf中:

SetOutputFilter RATE_LIMIT
SetEnv rate-limit 1024
SetEnv rate-initial-burst 1024

我的索引停止工作。我正在使用fancy-index,并且已经将其.htaccess的内容复制到了我的mods-enabled/autoindex.conf

我访问索引时服务器返回的html是

<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <meta http-equiv="X-UA-Compatible" content="IE=edge">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title></title>
  <link rel="stylesheet" type="text/css" href="/fancy-index/style.css">
</head>
<body>

如果我改为将这些速率限制行添加到<Directory>指令中,则索引是固定的,并且速率限制适用于该文件夹。但是,我试图用它来限制Nextcloud的下载速度,并且将限制应用于该虚拟主机或根目录似乎根本不起作用,因此我希望应用限制速度到整个服务器。

1 个答案:

答案 0 :(得分:0)

这显然是一个已知问题:https://bz.apache.org/bugzilla/show_bug.cgi?id=62568