comp.lang.ada
 help / color / mirror / Atom feed
From: "J-P. Rosen" <rosen@adalog.fr>
Subject: Re: AWS combined dispatcher Virtual host and URI
Date: Mon, 20 Apr 2020 15:20:28 +0200
Date: 2020-04-20T15:20:28+02:00	[thread overview]
Message-ID: <r7k7ir$db9$1@dont-email.me> (raw)
In-Reply-To: <r7k0qh$uet$1@gioia.aioe.org>

Le 20/04/2020 à 13:25, Dmitry A. Kazakov a écrit :
>> I don't want to see Virtual hosts as aliases, but as distinct
>> different hosts: "http://personal_domain/gallery" and
>> "http://company_domain/gallery" should serve two different galleries.
> 
> You mean you want to add the domain name to the map's key "gallery" in
> order to distinguish different contents? How this is supposed to work if
> both domain names are resolved to the same IP address and the client
> uses the address?

I've done that for a long time. If you query, you'll see that adalog.fr,
www.adalog.fr, adenothe.org all refer to the same IP address...

I have a real root directory (configured in the server config file),
with subdirectories named like the root URL of each virtual host. Here
is how I compute the root directory for each virtual host:

 Hostname  : constant String  := Status.Host (Request);
 K         : constant Natural := Index (Hostname, ":", Backward);
 Host_Root : constant String  := WWW_Root
                                  (Server.Config
                                   (Server.Get_Current.all))
                                     & (if K = 0
                                        then Hostname
                                        else Hostname (1 .. K-1));

-- 
J-P. Rosen
Adalog
2 rue du Docteur Lombard, 92441 Issy-les-Moulineaux CEDEX
Tel: +33 1 45 29 21 52, Fax: +33 1 45 29 25 00
http://www.adalog.fr

  reply	other threads:[~2020-04-20 13:20 UTC|newest]

Thread overview: 13+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-04-19 14:50 AWS combined dispatcher Virtual host and URI Per Jakobsen
2020-04-19 15:25 ` Dmitry A. Kazakov
2020-04-19 17:54   ` Per Jakobsen
2020-04-19 19:55     ` Dmitry A. Kazakov
2020-04-20  9:08       ` Per Jakobsen
2020-04-20 11:25         ` Dmitry A. Kazakov
2020-04-20 13:20           ` J-P. Rosen [this message]
2020-04-20 14:46             ` Dmitry A. Kazakov
2020-04-20 16:09               ` J-P. Rosen
2020-04-20 19:59                 ` Per Jakobsen
2020-04-21  5:39                   ` J-P. Rosen
2020-04-21  5:45                     ` Per Jakobsen
2020-04-21 21:25               ` Randy Brukardt
replies disabled

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox