Apache的认证和授权配置

Apache的认证和授权配置

1、修改配置文件httpd.conf

[root@bogon conf]#vi httpd.conf   //编辑修改配置文件

<Directory"/home">

    AuthType Basic      //使用基本认证方式Basic

    AuthName "please enter username andpassword:" //设定需要用户输入用户名和密码对话框的提示文字

    AuthUserFile /var/www/passwd/.htpasswd //指定认证口令文件存放的位置

    require valid-user    //授权给认证口令文件中的所有用户

</Directory>

2、创建认证口令文件,并添加允许访问目录的用户

 [root@bogon bin]# ./htpasswd -c/var/www/passwd/.htpasswd yywu

New password:

Re-type newpassword:

Adding password foruser yywu

You have new mailin /var/spool/mail/root

[root@bogon bin]#

3、重启apache服务

[root@bogon bin]#service httpd restart

4、访问已经设置需要认证的目录

Apache的认证和授权配置_第1张图片

输入用户名及密码,即可访问

Apache的认证和授权配置_第2张图片

 

你可能感兴趣的:(Apache的认证和授权配置)