Skip to content

Commit a06289c

Browse files
committed
fixed typo in docs about "nginx.htpasswd" filename
1 parent 1768927 commit a06289c

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

deployment/docker/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ For a "single instance" setup on a local machine you need at least:
1414

1515
The nginx's configuration is located in the `nginx.conf` file and contains a "Basic authentication"
1616
for accessing the HTTP and WebSocket API. The users for this sample authentication are configured
17-
in the `nginx.httpasswd` file also located in this directory.
17+
in the `nginx.htpasswd` file also located in this directory.
1818

1919
In order to add a new entry to this file, use the "openssl passwd" tool to create a hashed password:
2020
```bash
@@ -23,7 +23,7 @@ openssl passwd -quiet
2323
Verifying - Password: <enter password>
2424
```
2525

26-
Append the printed hash in the `nginx.httpasswd` file placing the username who shall receive this
26+
Append the printed hash in the `nginx.htpasswd` file placing the username who shall receive this
2727
password in front like this:
2828
```
2929
ditto:A6BgmB8IEtPTs

deployment/kubernetes/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ with its backing Database - MongoDB - and a reverse proxy - nginx - in front of
99
### Configure nginx
1010
The nginx's configuration is located in the `nginx.conf` file and contains a "Basic authentication"
1111
for accessing the HTTP and WebSocket API. The users for this sample authentication are configured
12-
in the `nginx.httpasswd` file also located in this directory.
12+
in the `nginx.htpasswd` file also located in this directory.
1313

1414
In order to add a new entry to this file, use the "openssl passwd" tool to create a hashed password:
1515
```bash
@@ -18,7 +18,7 @@ openssl passwd -quiet
1818
Verifying - Password: <enter password>
1919
```
2020

21-
Append the printed hash in the `nginx.httpasswd` file placing the username who shall receive this
21+
Append the printed hash in the `nginx.htpasswd` file placing the username who shall receive this
2222
password in front of Ditto like this:
2323
```
2424
ditto:A6BgmB8IEtPTs

deployment/openshift/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ with its backing Database - MongoDB - and a reverse proxy - nginx - in front of
66
## Configure nginx
77
The nginx's configuration is located in the `nginx.conf` file and contains a "Basic authentication"
88
for accessing the HTTP and WebSocket API. The users for this sample authentication are configured
9-
in the `nginx.httpasswd` file also located in this directory.
9+
in the `nginx.htpasswd` file also located in this directory.
1010

1111
In order to add a new entry to this file, use the "openssl passwd" tool to create a hashed password:
1212
```bash
@@ -15,7 +15,7 @@ openssl passwd -quiet
1515
Verifying - Password: <enter password>
1616
```
1717

18-
Append the printed hash in the `nginx.httpasswd` file placing the username who shall receive this
18+
Append the printed hash in the `nginx.htpasswd` file placing the username who shall receive this
1919
password in front like this:
2020
```
2121
ditto:A6BgmB8IEtPTs

0 commit comments

Comments
 (0)