Skip to content
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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ Use this deployment to test an implementation.

| Example | Description |
| :----------------------------------------------------- | :----------------------------------------------------- |
| [Cloudflare Workers](./examples/verification-workers/) | Verify RFC 9421 `Signature` for every incoming request |
| [Cloudflare Workers](./examples/verification-workers/) | Sign scheduled requests and verify incoming signatures |
| [Caddy Plugin](./examples/caddy-plugin/) | Verify RFC 9421 `Signature` for every incoming request |
| [Rust](./examples/rust/) | Verify a sample test request |

Expand Down
2 changes: 1 addition & 1 deletion examples/caddy-plugin/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ And finally, you run caddy

To generate a signed request, you can use the sibling [browser extension](../browser-extension).

`directory_base` is the direct directory mode. `registry` is experimental registry draft support and can be repeated. `fail_on_load_error` defaults to `false`; set it to `true` if Caddy should fail provisioning when directories, registries, cards, IP lists, or keys cannot be loaded.
`directory_base` is the direct directory mode. `registry` is experimental registry draft support and can be repeated. Keys are loaded during provisioning, so changes require a Caddy reload. `fail_on_load_error` defaults to `false`, returning 503 when no validator was loaded; set it to `true` to fail provisioning instead.

## Security Considerations

Expand Down
2 changes: 1 addition & 1 deletion packages/web-bot-auth/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ TypeScript helpers for Web Bot Auth, as described in [draft-meunier-webbotauth-h

## Usage

This section shows basic signing and verification.
This section shows basic signing and verification. To select one of several signatures, pass its `label` to `verify`; verify each label separately when all signatures matter.
More concrete examples are provided on [cloudflareresearch/web-bot-auth/examples](https://github.com/cloudflareresearch/web-bot-auth#examples).

### Research server for debug purposes
Expand Down