IT notes
∾
Github
DALMP
zunzun
epazote
fabrik
immortal
ssh-vault
SlashQuery
violetear
htpasswd
Sep 2, 2018
#
htpasswd
#
nginx
#
openssl
To create an htpasswd file (for htaccess “authentication”) using openssl: $ printf "foo:$(openssl passwd -apr1 PASSWORD)\n" >> .htpasswd If need to use crypt: $ printf "foo:$(openssl passwd -crypt PASSWORD)\n" >> .htpasswd
…