Create and manage htpasswd files to protect web server directories using basic authentication. More information: https://httpd.apache.org/docs/current/programs/htpasswd.html.
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}}