Lighttpd htdigest Generator - HTTP Digest Auth Passwords
Generate password hashes for Lighttpd mod_auth. Create htdigest MD5 or htpasswd plain/crypt credentials. Browser-based, no server upload.
Shown in login dialog, part of digest hash
Lighttpd Configuration
# lighttpd.conf
server.modules += ( "mod_auth" )
# For digest auth (htdigest)
auth.backend = "htdigest"
auth.backend.htdigest.userfile = "/etc/lighttpd/.htdigest"
# Protect a path
auth.require = (
"/admin/" => (
"method" => "digest",
"realm" => "Restricted Area",
"require" => "valid-user"
)
)Credentials File