Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #77637 > unrolled thread

Re: Run an http server on Apache without wsgi?

Started bydieter <dieter@handshake.de>
First post2014-09-06 07:54 +0200
Last post2014-09-06 07:54 +0200
Articles 1 — 1 participant

Back to article view | Back to comp.lang.python

This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by below is the oldest one visible, not the original post.


Contents

  Re: Run an http server on Apache without wsgi? dieter <dieter@handshake.de> - 2014-09-06 07:54 +0200

#77637 — Re: Run an http server on Apache without wsgi?

Fromdieter <dieter@handshake.de>
Date2014-09-06 07:54 +0200
SubjectRe: Run an http server on Apache without wsgi?
Message-ID<mailman.13821.1409982860.18130.python-list@python.org>
"Frank Millman" <frank@chagford.com> writes:

> My AccInABox project runs an http server. Previously I used the cherry.py 
> wsgiserver, but I have now switched to asyncio.
>
> I tried to use the wsgi interface, but I have a particular requirement and 
> found that wsgi got in the way, so I dropped it and now handle all requests 
> directly.
>
> Now the question arises, what if someone wants to run my program under 
> Apache or nginx?

There are various ways to interface Apache and Python: among
others "cgi", "fcgi", "wsgi". There also used to be "mod_python"
which allowed to run Python directly inside an Apache process - however,
this module is no longer supported.

[toc] | [standalone]


Back to top | Article view | comp.lang.python


csiph-web