htpasswd: add page

coverage
fuerbringer 2016-11-12 18:35:52 +01:00 committed by Agniva De Sarker
parent 2df0d27495
commit fc981c2116
1 changed files with 23 additions and 0 deletions

23
pages/common/htpasswd.md Normal file
View File

@ -0,0 +1,23 @@
# htpasswd
> Create and manage htpasswd files to protect web server directories using basic authentication.
- Create/overwrite htpasswd file:
`htpasswd -c {{file_path}} {{user_name}}`
- Add user to htpasswd file or update existing user:
`htpasswd {{file_path}} {{user_name}}`
- Add user to htpasswd file without password verification (for script usage):
`htpasswd -b {{file_path}} {{user_name}} {{password}}`
- Delete user from htpasswd file:
`htpasswd -D {{file_path}} {{user_name}}`
- Verify user password:
`htpasswd -v {{file_path}} {{user_name}}`