HTPASSWD(1) - General Commands Manual # HTPASSWD(1) - General Commands Manual
NAME # htpasswd - create and update user authentication files
SYNOPSIS # htpasswd [file] login
htpasswd -I [file]
DESCRIPTION # htpasswd is used to create and update user authentication files for HTTP daemons.
The options are as follows:
-I
Switch to batch mode. htpasswd reads exactly one line from standard input and splits it at the first “:”. The first part is the login, the second part is the password which htpasswd then hashes using bcrypt(3).
...
HTTPD.CONF(5) - File Formats Manual # HTTPD.CONF(5) - File Formats Manual
NAME # httpd.conf - HTTP daemon configuration file
DESCRIPTION # httpd.conf is the configuration file for the HTTP daemon, httpd(8).
httpd.conf is divided into the following main sections:
Macros
User-defined variables may be defined and used later, simplifying the configuration file.
Global Configuration
Global settings for httpd(8).
Servers
Listening HTTP web servers.
Types
Media types and extensions.
Within the sections, a host address can be specified by IPv4 address, IPv6 address, interface name, interface group, or DNS hostname.
...