Skip to content

Commit

Permalink
Merge branch 'daninus14-patch-1'
Browse files Browse the repository at this point in the history
  • Loading branch information
fukamachi committed Sep 6, 2024
2 parents c839148 + 38fdfa4 commit d821906
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,24 @@ Remember to pass ":debug nil" to turn off the debugger mode on production enviro
:worker-num 4)
```

### SSL Support

Use SSL key arguments of `woo:run` or `clack:clackup`.

```commonlisp
(woo:run app
:ssl-cert-file #P"path/to/cert.pem"
:ssl-key-file #P"path/to/key.pem"
:ssl-key-pass "password")
(clack:clackup app
:ssl-cert-file #P"path/to/cert.pem"
:ssl-key-file #P"path/to/key.pem"
:ssl-key-pass "password")
```

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

## Signal handling

When the master process gets these signals, it kills worker processes and quits afterwards.
Expand Down

0 comments on commit d821906

Please sign in to comment.