Configure Apache Password Authentication

Source: Internet
Author: User
Configure Apache Password Authentication

Apache provides a series of authentication, authorization, and access control modules. Here we use the most convenient mod_auth_basic, mod_authn_file, and mod_authz_user modules to implement directory or file authentication by entering users and passwords.
1. Generate a password file
Example:

  1. Htpasswd-C/var/www/. htpasswd centos

/Var/www/. htpasswd is the location of the password file
Centos is an authorized user.
Htpasswd tool detailed instructions: http://lamp.linux.gov.cn/Apache/ApacheMenu/programs/htpasswd.html
2. Configure the httpd. conf file

  1. <Directory/var/www/html/centos>
  2. Authtype basic
  3. Authbasicprovider File
  4. Authuserfile/var/www/. htpasswd
  5. Require valid-user
  6. </Directory>

Authentication is required when accessing the centos directory.
Reference: http://lamp.linux.gov.cn/Apache/ApacheMenu/howto/auth.html

 

For more information, see https://www.centos.bz/2012/04/apache-password-access/.

Configure Apache Password Authentication

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.