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


Groups > comp.lang.python > #77637

Re: Run an http server on Apache without wsgi?

From dieter <dieter@handshake.de>
Subject Re: Run an http server on Apache without wsgi?
Date 2014-09-06 07:54 +0200
References <lubojh$7r8$1@ger.gmane.org>
Newsgroups comp.lang.python
Message-ID <mailman.13821.1409982860.18130.python-list@python.org> (permalink)

Show all headers | View raw


"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.

Back to comp.lang.python | Previous | Next | Find similar | Unroll thread


Thread

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

csiph-web