Fw: ssl support
Hans Hübner
hans.huebner at gmail.com
Sun Jan 19 00:01:41 UTC 2014
I have made a fresh release containing the patch. Please report if you
have further issues.
-Hans
2014/1/18 Stas Boukarev <stassats at gmail.com>
> José Ronquillo <josrr at ymail.com> writes:
>
> > Hello Hans, my setup is
> >
> >
> >
> > common lisp implementation: SBCL 1.1.14
> > Linux 3.10.5 i686 and Linux 3.10 amd64
> >
> > Hunchentoot version 1.2.24
> >
> >
> > This code can help you to reproduce the problem:
> >
> >
> >
> > (ql:quickload "hunchentoot")
> >
> > (defvar *acceptor* nil "El acceptor de hunchentoot")
> >
> > (defun inicia-ht (&optional (port 4242))
> > (format t "Iniciando el servidor en el puerto ~5,'0d~%" port)
> > (setf *acceptor* (make-instance 'hunchentoot:easy-ssl-acceptor
> > :port port
> > :ssl-certificate-file "./server.crt"
> > :ssl-privatekey-file "./server.key"))
> > ; (setf *acceptor* (make-instance 'hunchentoot:easy-acceptor
> > ; :port port)
> > (setf (hunchentoot:acceptor-document-root *acceptor*) (pathname
> "/var/www/"))
> > (hunchentoot:start *acceptor*))
> >
> > (inicia-ht)
> >
> >
> >
> > You can test with ab with and without ssl
> >
> That was caused by the SSL stream not being closed. Should be fixed in
> git, thanks for the report!
>
> --
> With best regards, Stas.
>
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://mailman.common-lisp.net/pipermail/tbnl-devel/attachments/20140118/b2ecd16e/attachment.html>
More information about the Tbnl-devel
mailing list