Re: [fpc-pascal] FPC-based http/s server

2018-12-12 Thread Bo Berglund
On Mon, 10 Dec 2018 10:33:06 + (UTC), Mr Bee via fpc-pascal wrote: >Hi all, >Is there any open source, maintained and updated HTTP server using FPC out >there? Yes as part of the Indy10 suite. Indy has been part of Delphi for many years and is easily installed in Lazarus/Fpc too using the O

Re: [fpc-pascal] FPC-based http/s server

2018-12-11 Thread silvioprog
Hello dude, On Mon, Dec 10, 2018 at 8:09 AM Michael Van Canneyt wrote: [...] > It does not support https yet, but this is planned for the near future. > (I expect to work on it between this Christmas and new year) Please consider support for TLS 1.3 (all new

Re: [fpc-pascal] FPC-based http/s server

2018-12-10 Thread Alexander Grotewohl
Mr. Bee, you could use stunnel in the meantime, and look into implementing fcgi into simpleserver? :) What's your objective? Small servers like mini_httpd can be made to run freepascal binaries with little fuss, and would be sufficient for everything up until professional usage. At which point

Re: [fpc-pascal] FPC-based http/s server

2018-12-10 Thread Michael Van Canneyt
On Mon, 10 Dec 2018, Mr Bee via fpc-pascal wrote: Hi all, Is there any open source, maintained and updated HTTP server using FPC out there? I need a lightweight HTTP server written in FPC that supports Linux/Unix, F/CGI app, and HTTPS. It'd be better if it doesn't need external or third-part

[fpc-pascal] FPC-based http/s server

2018-12-10 Thread Mr Bee via fpc-pascal
Hi all, Is there any open source, maintained and updated HTTP server using FPC out there? I need a lightweight HTTP server written in FPC that supports Linux/Unix, F/CGI app, and HTTPS. It'd be better if it doesn't need external or third-party units such as Indy or Synapse, but only pure FPC sta