Created
June 13, 2014 16:21
-
-
Save samba/789122387e7f7330890b to your computer and use it in GitHub Desktop.
htpasswd replacement with openssl
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# Writes an APR1-format password hash to the provided <htpasswd-file> for a provided <username> | |
# This is useful where an alternative web server (e.g. nginx) supports APR1 but no `htpasswd` is installed. | |
# The APR1 format provides signifcantly stronger password validation, and is described here: | |
# http://httpd.apache.org/docs/current/misc/password_encryptions.html | |
help (){ | |
cat <<EOF | |
Usage: $0 <htpasswd-file> <username> | |
Prompts for password (twice) via openssl. | |
EOF | |
} | |
[ $# -lt 2 ] && help; | |
[ $# -eq 2 ] && printf "${2}:`openssl passwd -apr1`\n" >> ${1} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment