summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsthibaul <sthibaul@web>2023-01-12 19:04:57 +0000
committerIkiWiki <ikiwiki.info>2023-01-12 19:04:57 +0000
commitf3af051ecdbb97e7d089e82982b1abd8af0c5224 (patch)
tree85b2f5118a0b0e3b1cd9d14012a50ef1c79ec504
parenta97c81547fc055ebd67039b25a8d7cfe3e41f2f4 (diff)
-rw-r--r--wiki/401.mdwn2
1 files changed, 1 insertions, 1 deletions
diff --git a/wiki/401.mdwn b/wiki/401.mdwn
index f3fad00..12d8137 100644
--- a/wiki/401.mdwn
+++ b/wiki/401.mdwn
@@ -15,7 +15,7 @@ Several ways are possible to define your password and encrypt it so you can safe
* local shell with apache installed:
* `htpasswd -c -m /dev/stdout DesiredUsername` # and input your password at the prompts
* local shell with python installed:
- * `python3 -c 'import crypt; password=input(); print("DesiredUserName:", end=""); print(crypt.crypt(password, crypt.METHOD_MD5));'`
+ * `python3 -c 'import crypt; password=input(); print("DesiredUserName:", end=""); print(crypt.crypt(password, crypt.METHOD_MD5));'` # and input your password at the prompts
* browser (currently non-working):
* <https://secure.freedesktop.org/static/htpasswd.html>