-- Leo's gemini proxy

-- Connecting to freeshell.de:1965...

-- Connected

-- Sending request

-- Meta line: 20 text/gemini;lang=en-GB

htpasswd


> Create and manage htpasswd files to protect web server directories using basic authentication.

More information.


Create/overwrite htpasswd file:

htpasswd -c {path/to/file} {username}

Add user to htpasswd file or update existing user:

htpasswd {path/to/file} {username}

Add user to htpasswd file in batch mode without an interactive password prompt (for script usage):

htpasswd -b {path/to/file} {username} {password}

Delete user from htpasswd file:

htpasswd -D {path/to/file} {username}

Verify user password:

htpasswd -v {path/to/file} {username}

Display a string with username (plain text) and password (md5):

htpasswd -nbm {username} {password}


> Copyright © 2014—present the tldr-pages team and contributors.

> This work is licensed under the Creative Commons Attribution 4.0 International License (CC-BY).

CC-BY



-- Response ended

-- Page fetched on Tue May 21 06:28:04 2024