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,FREEMAIL_FROM autolearn=unavailable autolearn_force=no version=3.4.4 X-Received: by 10.224.64.202 with SMTP id f10mr11668805qai.2.1375476882306; Fri, 02 Aug 2013 13:54:42 -0700 (PDT) X-Received: by 10.49.36.199 with SMTP id s7mr303605qej.17.1375476882289; Fri, 02 Aug 2013 13:54:42 -0700 (PDT) Path: border1.nntp.ams.giganews.com!nntp.giganews.com!xlned.com!feeder3.xlned.com!news.glorb.com!fx3no582070qab.0!news-out.google.com!a13ni157qay.0!nntp.google.com!fx3no582064qab.0!postnews.google.com!glegroupsg2000goo.googlegroups.com!not-for-mail Newsgroups: comp.lang.ada Date: Fri, 2 Aug 2013 13:54:42 -0700 (PDT) In-Reply-To: <51fbeb3e$0$81782$afc38c87@news6.united-newsserver.de> Complaints-To: groups-abuse@google.com Injection-Info: glegroupsg2000goo.googlegroups.com; posting-host=37.30.238.166; posting-account=bMuEOQoAAACUUr_ghL3RBIi5neBZ5w_S NNTP-Posting-Host: 37.30.238.166 References: <874bf843-8212-44a4-b0c6-e20d831325bc@googlegroups.com> <51F92827.5000903@obry.net> <51f95d3a$0$14311$afc38c87@news7.united-newsserver.de> <51F97BA8.9040401@obry.net> <51f9e7e6$0$5337$afc38c87@news6.united-newsserver.de> <3ab6d365-9832-4d51-80a9-b6438930ce84@googlegroups.com> <51fbeb3e$0$81782$afc38c87@news6.united-newsserver.de> User-Agent: G2/1.0 MIME-Version: 1.0 Message-ID: <2223020c-08d4-4533-9de5-ddd2964d373a@googlegroups.com> Subject: Re: Web Development Using Ada? From: Maciej Sobczak Injection-Date: Fri, 02 Aug 2013 20:54:42 +0000 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Xref: number.nntp.dca.giganews.com comp.lang.ada:182826 Date: 2013-08-02T13:54:42-07:00 List-Id: > > I would not expect AWS to handle this - specialized tools like nginx do > > it already and there is no reason to reinvent the wheel just to prove > > that you can implement the whole infrastructure in Ada. It would be a > > wasted effort, especially if we take into account the limited resources > > of the Ada web-development community. >=20 > Do you already have some experiences while integrating your Ada=20 > application on the nginx? Yes. There is nothing special or particular to Ada (and AWS) in this. The setup that we use is to have a single nginx proxy server listening on p= ort 80 (the "standard" HTTP port) and dispatching requests based on the tar= get host name (there can be many such names residing on a single physical a= ddress) to the particular AWS server that is handling the given service. Th= e AWS server can be on the same or on a different machine than the one wher= e nginx itself runs. Most importantly, the AWS server(s) does not have to l= isten on any privileged port number, which makes it much easier to manage f= rom non-root accounts. All this is invisible to users. --=20 Maciej Sobczak * http://www.msobczak.com * http://www.inspirel.com