Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #77637 > unrolled thread
| Started by | dieter <dieter@handshake.de> |
|---|---|
| First post | 2014-09-06 07:54 +0200 |
| Last post | 2014-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.
Re: Run an http server on Apache without wsgi? dieter <dieter@handshake.de> - 2014-09-06 07:54 +0200
| From | dieter <dieter@handshake.de> |
|---|---|
| Date | 2014-09-06 07:54 +0200 |
| Subject | Re: 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.
Back to top | Article view | comp.lang.python
csiph-web