
[Compile]

	`make`


[Install]

	`make install`

	or

	`make install-wrapper`
	`make install-module`


[Configure]

	Apache commands (within any Location or Directory directive):

		AuthBSD On | Off
			Toggle BSD Authentication
			Default: Off

		AuthBSDKeepPass On | Off
			Toggle password erasure.
			Default: Off

		AuthBSDRequireSSL On | Off
			Toggle secure connection verification.
			Default: On

		AuthBSDWrapper /path/to/wrapper
			BSD Authentication wrapper.
			Default: /usr/local/libexec/login_bsd

		AuthBSDService login | challenge
			BSD Authentication service. Challenge
			service is not available.
			Default: login

		AuthBSDStyle passwd | radius | ...
			BSD Authentication style. This chooses the
			BSD Auth module, e.g. /usr/libexec/auth/login_passwd,
			/usr/libexec/auth/login_radius.
			Default: passwd

		AuthBSDType auth-www | auth-soap | ...
			See login.conf(5).

	Example configuration:

		<Directory /var/www/virt/25thandClement/login>
			SSLRequireSSL		# highly recommended
			AuthType Basic		# only HTTP Basic supported
			AuthName "Wilbur Login"
			AuthBSD On
			Require valid-user	# restrict to system accounts
		</Directory>
