Skip to content
Open
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: 3 additions & 1 deletion web-server-doc/web-server/scribblings/launch.scrbl
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,9 @@ A default implementation of the dispatch server's connection-conversion abstract

Constructs an implementation of the dispatch server's connection-conversion abstraction for OpenSSL.

@history[#:added "1.1"]}
@history[#:changed "8.16"
@elem{Changed the handling of private keys to support the PEM-encoded PKCS#8 format by default.}
#:added "1.1"]}


@defproc[(do-not-return) none/c]{
Expand Down
2 changes: 1 addition & 1 deletion web-server-lib/web-server/web-server.rkt
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@
(define the-ctxt
(ssl-make-server-context))
(ssl-load-certificate-chain! the-ctxt server-cert-file)
(ssl-load-private-key! the-ctxt server-key-file)
(ssl-load-private-key! the-ctxt server-key-file #f)
(define-unit ssl:dispatch-server-connect@
(import) (export dispatch-server-connect^)
(define (port->real-ports ip op)
Expand Down
Loading