Velocity Reviews

Velocity Reviews (http://www.velocityreviews.com/forums/index.php)
-   Python (http://www.velocityreviews.com/forums/f43-python.html)
-   -   [WSGI] FCGID + Flup vs. mod_wsgi? (http://www.velocityreviews.com/forums/t952495-wsgi-fcgid-flup-vs-mod_wsgi.html)

Gilles 09-21-2012 10:49 AM

[WSGI] FCGID + Flup vs. mod_wsgi?
 
Hello

The shared host I intend to use to run a small Python web app only
supports mod_fcgid on its Apache server.

If I understood what I read on the Net, the ideal solution would be to
have mod_wsgi installed and have it run either as a module within
Apache or a stand-alone process to talk to the Python app, but it's
N.A. so that's out.

As for FCGID, am I correct in understanding that this is the way
things work:

Apache <-> mod_fcgid <-> Flup (or some other wrapper) <-> WSGI
application?

http://www.stackoverflow.com/questio...-wsgi-and-fcgi

Would I miss a lot by using the mod_fcgid+Flup solution instead of
mod_wsgi?

Thank you.


All times are GMT. The time now is 01:04 AM.

Powered by vBulletin®. Copyright ©2000 - 2013, vBulletin Solutions, Inc.
SEO by vBSEO ©2010, Crawlability, Inc.


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57