Skip to content

Commit

Permalink
fixed typo in docs about "nginx.htpasswd" filename
Browse files Browse the repository at this point in the history
  • Loading branch information
thjaeckle committed Oct 28, 2024
1 parent 275219c commit 4488484
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions deployment/docker/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ For a "single instance" setup on a local machine you need at least:

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

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

Append the printed hash in the `nginx.httpasswd` file placing the username who shall receive this
Append the printed hash in the `nginx.htpasswd` file placing the username who shall receive this
password in front like this:
```
ditto:A6BgmB8IEtPTs
Expand Down
4 changes: 2 additions & 2 deletions deployment/kubernetes/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ with its backing Database - MongoDB - and a reverse proxy - nginx - in front of
### Configure nginx
The nginx's configuration is located in the `nginx.conf` file and contains a "Basic authentication"
for accessing the HTTP and WebSocket API. The users for this sample authentication are configured
in the `nginx.httpasswd` file also located in this directory.
in the `nginx.htpasswd` file also located in this directory.

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

Append the printed hash in the `nginx.httpasswd` file placing the username who shall receive this
Append the printed hash in the `nginx.htpasswd` file placing the username who shall receive this
password in front of Ditto like this:
```
ditto:A6BgmB8IEtPTs
Expand Down
4 changes: 2 additions & 2 deletions deployment/openshift/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ with its backing Database - MongoDB - and a reverse proxy - nginx - in front of
## Configure nginx
The nginx's configuration is located in the `nginx.conf` file and contains a "Basic authentication"
for accessing the HTTP and WebSocket API. The users for this sample authentication are configured
in the `nginx.httpasswd` file also located in this directory.
in the `nginx.htpasswd` file also located in this directory.

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

Append the printed hash in the `nginx.httpasswd` file placing the username who shall receive this
Append the printed hash in the `nginx.htpasswd` file placing the username who shall receive this
password in front like this:
```
ditto:A6BgmB8IEtPTs
Expand Down

0 comments on commit 4488484

Please sign in to comment.