htpasswd is a command line tool for creating and updating user authentication files. These files are primarily used by apache to authenticate HTTP users. Creating a password file PLAIN TEXT CODE: htpasswd -c /path/to/.htpasswd username Adding a user & password PLAIN TEXT CODE: htpasswd -b /path/to/.htpasswd username password Tweet
