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

[Miniflare 3] Update API docs with routes, queue*, https*, and upstream #618

Merged
merged 4 commits into from
Jun 29, 2023
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
fixup! Update API docs with routes, queue*, https*, and upstream
  • Loading branch information
mrbbot committed Jun 28, 2023
commit 27a6a1001036893e9adae2b1bdf8336fe5be35da
10 changes: 5 additions & 5 deletions packages/miniflare/README.md
Original file line number Diff line number Diff line change
@@ -435,11 +435,11 @@ Options shared between all Workers/"nanoservices".

- `https?: boolean`

Start an HTTPS server using a pre-generated self-signed certificate for
`localhost`. Note this certificate is not valid for any other hostnames or IP
addresses. If you need to access the HTTPS server from another device, you'll
need to generate your own certificate and use the other `https*` options
below.
If `true`, start an HTTPS server using a pre-generated self-signed certificate
for `localhost`. Note this certificate is not valid for any other hostnames or
IP addresses. If you need to access the HTTPS server from another device,
you'll need to generate your own certificate and use the other `https*`
options below.

```shell
$ openssl req -newkey rsa:2048 -nodes -keyout key.pem -x509 -days 365 -out cert.pem