From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00 autolearn=unavailable autolearn_force=no version=3.4.4 X-Received: by 10.182.97.130 with SMTP id ea2mr1426348obb.22.1421199390469; Tue, 13 Jan 2015 17:36:30 -0800 (PST) X-Received: by 10.182.33.65 with SMTP id p1mr12383obi.11.1421199390296; Tue, 13 Jan 2015 17:36:30 -0800 (PST) Path: border1.nntp.dca1.giganews.com!nntp.giganews.com!h15no4813296igd.0!news-out.google.com!h6ni5470igv.0!nntp.google.com!h15no3112791igd.0!postnews.google.com!glegroupsg2000goo.googlegroups.com!not-for-mail Newsgroups: comp.lang.ada Date: Tue, 13 Jan 2015 17:36:30 -0800 (PST) Complaints-To: groups-abuse@google.com Injection-Info: glegroupsg2000goo.googlegroups.com; posting-host=73.46.72.234; posting-account=yiWntAoAAAC1KqC_shmxJYv07B9l6LNU NNTP-Posting-Host: 73.46.72.234 User-Agent: G2/1.0 MIME-Version: 1.0 Message-ID: Subject: Full direct SSL support now in Gnoga From: David Botton Injection-Date: Wed, 14 Jan 2015 01:36:30 +0000 Content-Type: text/plain; charset=ISO-8859-1 Xref: number.nntp.giganews.com comp.lang.ada:191875 Date: 2015-01-13T17:36:30-08:00 List-Id: Now in Gnoga full direct SSL support is now available (Special thanks to Dmitry for adding https support to simple components). To add https support you simple add: with "..path..to../ssl/gnoga_secure.gpr"; Then: Gnoga.Server.Connection.Secure.Register_Secure_Server (Certificate_File => "path_to_certificate.crt", Key_File => "path_to_keyfile.key", Port => 8443, Disable_Insecure => False); Gnoga.Application.Multi_Connect.Initialize (Port => 8082); Your server now would list to http on 8082 and https on 8443 Alternatively you can not use direct support and use an ssl proxy (see the FAQ) Enjoy! David Botton