Re: [libmicrohttpd] PATCH: Fix check for epoll mode and blocking socket

2022-05-18 Thread Evgeny Grin
Hi Kolja, Your patch is correct, applied as suggested. Can you share more information about your exotic platform? Do you need other modifications to run successfully MHD or it works just with this patch? Do you use autotools (configure) or you some custom MHD_config.h? It's interesting that s

Re: [libmicrohttpd] PATCH: Fix check for epoll mode and blocking socket

2022-05-18 Thread Kolja Nowak
Hi, > Your patch is correct, applied as suggested. Thanks! > Can you share more information about your exotic platform? ucos-II running on a Xtensa8 CPU with unicoi fusion TCPIP stack. > Do you need other modifications to run successfully MHD or it > works just with this patch? I can't answe

[libmicrohttpd] Let's Encrypt handler

2022-05-18 Thread Gavin Henry
Hi all, Has anyone done this before in their project? I'm looking to add TLS to SentryPeer and need to grab a cert, then I'll use it in mhd for our API. I know it's easy to a serve HTTPS already in mhd. Thanks, Gavin.

Re: [libmicrohttpd] Let's Encrypt handler

2022-05-18 Thread silvioprog
Hi Gavin. For sure. Just followed the same Let's Encrypt steps for Nginx and it worked like a charm with MHD. Regards On Wed, May 18, 2022 at 3:08 PM Gavin Henry wrote: > Hi all, > > Has anyone done this before in their p

Re: [libmicrohttpd] Let's Encrypt handler

2022-05-18 Thread Gavin Henry
Thanks Silvio. In my head, I have just set up a "/.well-known" handler and processing/serving up what it needs. Maybe this can only be done on the CLI by the admin of my project. Was trying to think of an automated way to get your cert and put it in the right place. Gavin.

Re: [libmicrohttpd] Let's Encrypt handler

2022-05-18 Thread silvioprog
Oh yes, and also you can use a bot like Certbot or LEGO to make it easier. 🚀 On Wed, May 18, 2022 at 4:37 PM Gavin Henry wrote: > Thanks Silvio. > > In my head, I have just set up a "/.well-known" handler and > processing/serving up what

Re: [libmicrohttpd] Let's Encrypt handler

2022-05-18 Thread Gavin Henry
Thanks!