Create and manage htpasswd files to protect web server directories using basic authentication.
htpasswd -c {{path/to/file}} {{user_name}}
htpasswd {{path/to/file}} {{user_name}}
htpasswd -b {{path/to/file}} {{user_name}} {{password}}
htpasswd -D {{path/to/file}} {{user_name}}
htpasswd -v {{path/to/file}} {{user_name}}