如何在 apache 中使用限制访问?

如何在 apache 中使用限制访问?

httpd.conf 是:

<Directory "/var/www/html">
        AuthName "Protected autons"
        AuthType Basic
        AuthUserFile /usr/local/gdnsplus_autons/sbin/apache.passwd
        require user test
</Directory>

只有“test”用户可以访问该网站。现在,我想添加一个功能:如果“test”用户在5次后输入错误的密码,则“test”用户必须等待10分钟,然后“test”才能再次进入。

如何通过 apache 解决?谢谢。

答案1

基本上,您正在使用密码保护 Web 服务器目录。按照以下步骤操作即可开始:

相关内容