我使用的是 Apache 2.2 而不是 2.4,这解释了标题中的错误。在 Brain99 发表他的评论后,我发现我有 2.2,按照他的建议调整我的配置(仍然没有用),试了一下,睡了一晚,第二天我发现,我忘记了包含启用 mod 的目录的语句!
现在我只需要服务器让我从一个特定的文件夹下载文件(在我的例子中我选择 /opt/myFolder 来完成该任务)
发行版是 Debian 6.0
编辑开始
Apache 版本是 2.4,根据他们的官方文档,Order/Allow 子句已被弃用,不应再使用
我是个白痴:Apache 版本是 2.2。
edit_end
我在 apache2.conf 中的目录指令如下所示:
<IfModule dir_module>
DirectoryIndex index.html index.htm index.php
</IfModule>
ServerRoot "/etc/apache2"
DocumentRoot "/opt/myFolder"
<Directory />
Options FollowSymLinks
AuthType None
AllowOverride None
Require all denie
</Directory>
<Directory "/opt/myFolder/*">
Options FollowSymLinks MultiViews
AllowOverride None
AuthType None
Require all allow
</Directory>
当我尝试访问该文件夹 ( http://myserver.de/aTestFile.zip ) 中的文件时,出现内部服务器错误。Apache 还将以下错误写入其日志:
configuration error: couldn't check user. Check your authn provider!: /aTestFile.zip
如果我不需要任何身份验证,为什么还需要身份验证提供程序?我也希望有人可以向我解释我需要什么样的 AuthenticationProvider。每次我搜索这些东西时,都会有人问我如何使用密码保护文件/目录或限制对某些 IP 地址的访问,这对我没有多大帮助。
好的,因为我有 Apache 2.2 版,这是我在使用 Order/Deny/Allow 命令而不是 AuthType/Require 命令时得到的错误:
Invalid command 'Order', perhaps misspelled or defined by a module not included in the server configuration.
我相信这是由于以下错误的配置指令造成的:
请尝试以下配置:
编辑 2:您的问题也可能是由于未加载mod_authz_host模块。您可以尝试启用它
a2enmod authz_host
并重新启动 apache。另外,似乎
AuthType None
是无效的。只需AuthType
从您的配置中完全删除该指令即可。