Message from discussion
Deploying cherrypy on bluehost
Received: by 10.150.91.20 with SMTP id o20mr616849ybb.13.1240475491710;
Thu, 23 Apr 2009 01:31:31 -0700 (PDT)
Return-Path: <fuman...@aminus.org>
Received: from ex7.myhostedexchange.com (ex7.myhostedexchange.com [69.50.2.10])
by gmr-mx.google.com with ESMTP id 14si682358gxk.7.2009.04.23.01.31.31;
Thu, 23 Apr 2009 01:31:31 -0700 (PDT)
Received-SPF: neutral (google.com: 69.50.2.10 is neither permitted nor denied by best guess record for domain of fuman...@aminus.org) client-ip=69.50.2.10;
Authentication-Results: gmr-mx.google.com; spf=neutral (google.com: 69.50.2.10 is neither permitted nor denied by best guess record for domain of fuman...@aminus.org) smtp.mail=fuman...@aminus.org
Received: from ex10.myhostedexchange.com ([69.50.2.10]) by ex7.myhostedexchange.com with Microsoft SMTPSVC(6.0.3790.3959);
Thu, 23 Apr 2009 01:31:30 -0700
X-MimeOLE: Produced By Microsoft Exchange V6.5
Content-class: urn:content-classes:message
MIME-Version: 1.0
Content-Type: text/plain;
charset="us-ascii"
Content-Transfer-Encoding: quoted-printable
Subject: RE: [cherrypy-users] Re: Deploying cherrypy on bluehost
Date: Thu, 23 Apr 2009 01:29:17 -0700
Message-ID: <F1962646D3B64642B7C9A06068EE1E6408071A67@ex10.hostedexchange.local>
In-Reply-To: <49EEEEEF.3090602@g.nevcal.com>
X-MS-Has-Attach:
X-MS-TNEF-Correlator:
Thread-Topic: [cherrypy-users] Re: Deploying cherrypy on bluehost
Thread-Index: AcnDM7keCWGxJHYqSheRTcbAexTWbQAucFzw
References: <0dfd4310-eba9-4c1e-822b-3d5e1b620ec9@o40g2000prn.googlegroups.com> <49C13305.2040603@probo.com> <fc0d19240903190713m27c2a4a3vc4eed5dba721f586@mail.gmail.com> <fc0d19240903190714m4596f06cq362c5c46e9dc744e@mail.gmail.com> <fc0d19240903190745t3682dc39lc544f2dae140c08d@mail.gmail.com> <fc0d19240903190757sc21ea4fl8a5daba8a46008c6@mail.gmail.com> <62191.194.254.137.114.1237475183.squirrel@mail1.webfaction.com> <fc0d19240903190811v4dc5c018l7769c2af28f6b877@mail.gmail.com> <F1962646D3B64642B7C9A06068EE1E640794EEEA@ex10.hostedexchange.local> <fc0d19240903190828q1e1a3716t8014c5f746b66efb@mail.gmail.com> <fc0d19240903190835s579086d8r8b3449ca928b6...@mail.gmail.com> <F1962646D3B64642B7C9A06068EE1E64079CA...@ex10.hostedexchange.local> <49EEEEEF.3090...@g.nevcal.com>
From: "Robert Brewer" <fuman...@aminus.org>
To: <cherrypy-users@googlegroups.com>
Return-Path: fuman...@aminus.org
X-OriginalArrivalTime: 23 Apr 2009 08:31:30.0573 (UTC) FILETIME=[E6ED0BD0:01C9C3ED]
Glenn Linderman wrote:
> On approximately 3/19/2009 1:43 PM, came the following characters from
> the keyboard of Robert Brewer:
> > arjuna wrote:
> >> It says serving on mydomain:2000
> >> however when i go to http://www.mydomain:2000
> >> it says connecting.... and nothing happens
> >> (unlike the magic that happens on my localhost)
> >
> > If that 'serving on...' message is spit out by CherryPy, then you
> > certainly do *not* want that port to be accessible to the outside
> world.
> > That is the port which CherryPy is listening on for FastCGI messages
> > from Apache on the same machine; it is NOT an HTTP port.
> >
> > -----\ ---------\ -----------
> > | CP 2000 <-FastCGI-> | Apache 80 <-HTTP-> | Browser |
> > -----/ ---------/ -----------
>=20
>=20
> FastCGI messages come in on a socket established when the FastCGI
> process is launched. So there is not port involved for FastCGI, as
far
> as I know. Or do I misunderstand something?
If it's a TCP socket, then it has a port. If it's a Unix socket, then it
has a pseudo-file instead.
Bob