1
0
Fork 0
blog/content/articles/2008-02-26-how-to-quickly-g...

2.0 KiB

title date tags redirect_from
How to quickly generate encrypted .htpasswd passwords 2008-02-26 23:24:17+00:00
design
tutorial
macos
/2008/02/how-to-quickly-generate-encrypted-logins-on-a-mac-for-htaccess-protected-sites/

Easily generate .htpasswd credentials for use in .htaccess files on macOS.

As you may know you can easily password protect your website or parts of it using an htaccess file with special instructions on an Apache-based server. For using this method you just have to put a file named .htaccess (which includes the instructions for the webserver) and a file named .htpasswd (which includes the login-accounts) in the directory you want to have password protected. But you have to encrypt the passwords of the login data for yourself, which is a quick task on a Mac.

I won't go into detail what exactly is needed in your .htaccess, since it often depends on your hosting provider which instructions are allowed. If you are new to all this stuff and want to password protect your website or parts of it, have a look in the part Password Protection of the Comprehensive guide to .htaccess written by Feyd.

The login data, in detail just the password is stored encrypted in the .htpasswd-file but you have to encrypt it before writing it in this file. On a Mac you can benefit from the underlying Unix-technology for quickly generating your login accounts using the commandline utility htpasswd.

Just open Terminal application and type in the following code and replace username and password with your desired data:

# replace username & password
htpasswd -nb username password

and press enter. Terminal should output a new line containing your login data with an encrypted password. Just paste it in your .htpasswd-file and you're done.

It's that easy.