Skip to content

Commit

Permalink
Fix a typo of :ssl-key-password in README.
Browse files Browse the repository at this point in the history
  • Loading branch information
fukamachi committed Sep 6, 2024
1 parent d821906 commit 7f5219c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,12 +62,12 @@ Use SSL key arguments of `woo:run` or `clack:clackup`.
(woo:run app
:ssl-cert-file #P"path/to/cert.pem"
:ssl-key-file #P"path/to/key.pem"
:ssl-key-pass "password")
:ssl-key-password "password")
(clack:clackup app
:ssl-cert-file #P"path/to/cert.pem"
:ssl-key-file #P"path/to/key.pem"
:ssl-key-pass "password")
:ssl-key-password "password")
```

To disable the HTTPS support to omit a dependency on CL+SSL, add `woo-no-ssl` to `cl:*features*`.
Expand Down

0 comments on commit 7f5219c

Please sign in to comment.