创建htpasswd文件在nginx (没有 apache)

Create htpasswd file for nginx (without apache)

If you're like me, and use Nginx instead of Apache, you could eventually face this problem: Create an htpasswd file (for htaccess "authentication").

To create your file, without installing Apache, just run:

$ printf "USER:$(openssl passwd -crypt PASSWORD)
" >> .htpasswd

Replace USER and PASSWORD for your user and password :)

原文地址:https://www.cnblogs.com/Hackerman/p/12022640.html