rack-devel archive mirror (unofficial) https://groups.google.com/group/rack-devel
 help / color / mirror / Atom feed
From: armanx <armanx@gmail.com>
To: rack-devel@googlegroups.com
Subject: Possible to read request's host in config.ru?
Date: Sat, 22 Sep 2012 02:58:00 -0700 (PDT)	[thread overview]
Message-ID: <4c36a997-d560-4115-9261-1c0a7b7c24c9@googlegroups.com> (raw)

[-- Attachment #1: Type: text/plain, Size: 541 bytes --]

Is it possible to detect the incoming request's domain name (host) in 
config.ru? I'm trying to use URLMap to map different domains to different 
apps, all running on the same IP. Theoretically, I'm trying to achieve this 
effect:

map 'http://example1.com' do
> run MyApp::Example1
> end

 

 

map 'http://example2.com' do
> run MyApp::Example2
> end



For example, if it was possible to read rack's SERVER_NAME in config.ru, I 
would do something like:

if SERVER_NAME == 'example1.com'
> map '/' do
> run MyApp::Example1
> end
> end

 

[-- Attachment #2: Type: text/html, Size: 1899 bytes --]

             reply	other threads:[~2012-09-22  9:58 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-09-22  9:58 armanx [this message]
2012-09-22 10:04 ` Possible to read request's host in config.ru? Magnus Holm
2012-09-22 10:32   ` Arman
2012-09-22 10:42     ` Magnus Holm
2012-09-25  0:37       ` armanx

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-list from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://groups.google.com/group/rack-devel

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=4c36a997-d560-4115-9261-1c0a7b7c24c9@googlegroups.com \
    --to=rack-devel@googlegroups.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).