summaryrefslogtreecommitdiff
path: root/doc/outdated/authentication.txt
diff options
context:
space:
mode:
authorGlenn Strauss <gstrauss@gluelogic.com>2020-02-22 17:24:12 -0500
committerGlenn Strauss <gstrauss@gluelogic.com>2020-07-08 19:54:30 -0400
commitc752d4696ec34a45d4341700d63056a173312ebc (patch)
treeab73dbc40be363f95d350e020647d8a4aba6d9a2 /doc/outdated/authentication.txt
parentbcddbe186f010e2964f7551141c0b8350b36817d (diff)
downloadlighttpd-git-c752d4696ec34a45d4341700d63056a173312ebc.tar.gz
[multiple] correct misspellings in comments
x-ref: "Script for fixing spelling errors with codespell" https://redmine.lighttpd.net/boards/3/topics/8947
Diffstat (limited to 'doc/outdated/authentication.txt')
-rw-r--r--doc/outdated/authentication.txt12
1 files changed, 6 insertions, 6 deletions
diff --git a/doc/outdated/authentication.txt b/doc/outdated/authentication.txt
index 6fbd7764..3e2e7011 100644
--- a/doc/outdated/authentication.txt
+++ b/doc/outdated/authentication.txt
@@ -37,7 +37,7 @@ basic
The Basic method transfers the username and the password in
cleartext over the network (base64 encoded) and might result
-in security problems if not used in conjunction with a crypted
+in security problems if not used in conjunction with an encrypted
channel between client and server.
digest
@@ -70,7 +70,7 @@ plain
`````
A file which contains username and the cleartext password
-seperated by a colon. Each entry is terminated by a single
+separated by a colon. Each entry is terminated by a single
newline.::
e.g.:
@@ -81,7 +81,7 @@ htpasswd
````````
A file which contains username and the crypt()'ed password
-seperated by a colon. Each entry is terminated by a single
+separated by a colon. Each entry is terminated by a single
newline. ::
e.g.:
@@ -97,7 +97,7 @@ htdigest
````````
A file which contains username, realm and the md5()'ed
-password seperated by a colon. Each entry is terminated
+password separated by a colon. Each entry is terminated
by a single newline. ::
e.g.:
@@ -188,13 +188,13 @@ Configuration
auth.require = ( "/download/" =>
(
"method" => "digest",
- "realm" => "download archiv",
+ "realm" => "download archive",
"require" => "user=agent007|user=agent008"
),
"/server-info" =>
(
"method" => "digest",
- "realm" => "download archiv",
+ "realm" => "download archive",
"require" => "valid-user"
)
)