Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix some typo #324

Merged
merged 1 commit into from
Jul 14, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions examples/read-only-auth/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ There are two htpasswd files. `read-write.htpasswd` a read and write access to t

All users in `read-only.htpasswd` should be in `read-write.htpasswd`.

Read only user: login: `read` password: `regisrty`.
Read and write user: login: `write` password: `regisrty`.
Read only user: login: `read` password: `registry`.
Read and write user: login: `write` password: `registry`.
2 changes: 1 addition & 1 deletion examples/traefik/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ bash run-swarm.sh

## Authentication

The registry is protected via __Basic authentication__ but feel free to use wathever you like.
The registry is protected via __Basic authentication__ but feel free to use whatever you like.
In this sample, credentials are: **admin / admin**.

To generate a new password for basic auth, run the command: `htpasswd -nb username password`.
Expand Down
2 changes: 1 addition & 1 deletion src/components/version-notification.riot
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<material-popup opened="{ state.open }" onClick="{ onClose }">
<div class="material-popup-title">Check for updates</div>
<div class="material-popup-content">
<p>The version <b>{ state.tag_name }</b> of Docker Regisrty UI now available.</p>
<p>The version <b>{ state.tag_name }</b> of Docker Registry UI now available.</p>
<p>You can download the lastest version with docker.</p>
<code>joxit/docker-registry-ui:{ state.tag_name }</code>
</div>
Expand Down
Loading