
cherokee at cherokee-project
Oct 9, 2009, 10:34 AM
Post #1 of 1
(106 views)
Permalink
|
|
[3694] cherokee/trunk/doc: uWSGI handler was undocumented.
|
|
Revision: 3694 http://svn.cherokee-project.com/changeset/3694 Author: taher Date: 2009-10-09 19:34:09 +0200 (Fri, 09 Oct 2009) Log Message: ----------- uWSGI handler was undocumented. Modified Paths: -------------- cherokee/trunk/doc/Makefile.am cherokee/trunk/doc/index.txt cherokee/trunk/doc/modules.txt cherokee/trunk/doc/modules_handlers.txt Added Paths: ----------- cherokee/trunk/doc/modules_handlers_uwsgi.txt Modified: cherokee/trunk/doc/Makefile.am =================================================================== --- cherokee/trunk/doc/Makefile.am 2009-10-09 17:12:54 UTC (rev 3693) +++ cherokee/trunk/doc/Makefile.am 2009-10-09 17:34:09 UTC (rev 3694) @@ -92,6 +92,7 @@ modules_handlers_admin.html \ modules_handlers_proxy.html \ modules_handlers_secdownload.html \ +modules_handlers_uwsgi.html \ modules_loggers.html \ modules_loggers_combined.html \ modules_loggers_ncsa.html \ Modified: cherokee/trunk/doc/index.txt =================================================================== --- cherokee/trunk/doc/index.txt 2009-10-09 17:12:54 UTC (rev 3693) +++ cherokee/trunk/doc/index.txt 2009-10-09 17:34:09 UTC (rev 3694) @@ -89,6 +89,7 @@ - link:modules_handlers_cgi.html[CGI]: Common Gateway Interface. - link:modules_handlers_fcgi.html[FastCGI]: Fast Common Gateway Interface. - link:modules_handlers_scgi.html[SCGI]: Simple Common Gateway Interface. + - link:modules_handlers_uwsgi.html[uWSGI]: uWSGI protocol. - link:modules_handlers_proxy.html[HTTP reverse proxy]: Surrogate/reverse proxy handler. - link:modules_handlers_ssi.html[Server Side Includes]: SSI Server Support. - link:modules_handlers_streaming.html[Audio/Video Streaming]: Media streamer. Modified: cherokee/trunk/doc/modules.txt =================================================================== --- cherokee/trunk/doc/modules.txt 2009-10-09 17:12:54 UTC (rev 3693) +++ cherokee/trunk/doc/modules.txt 2009-10-09 17:34:09 UTC (rev 3694) @@ -9,6 +9,7 @@ - link:modules_handlers_cgi.html[CGI]: Common Gateway Interface. - link:modules_handlers_fcgi.html[FastCGI]: Fast Common Gateway Interface. - link:modules_handlers_scgi.html[SCGI]: Simple Common Gateway Interface. + - link:modules_handlers_uwsgi.html[uWSGI]: uWSGI protocol. - link:modules_handlers_proxy.html[HTTP reverse proxy]: Surrogate/reverse proxy handler. - link:modules_handlers_ssi.html[Server Side Includes]: SSI Server Support. - link:modules_handlers_streaming.html[Audio/Video Streaming]: Media streamer. Modified: cherokee/trunk/doc/modules_handlers.txt =================================================================== --- cherokee/trunk/doc/modules_handlers.txt 2009-10-09 17:12:54 UTC (rev 3693) +++ cherokee/trunk/doc/modules_handlers.txt 2009-10-09 17:34:09 UTC (rev 3694) @@ -21,6 +21,7 @@ * link:modules_handlers_cgi.html[CGI]: Common Gateway Interface. * link:modules_handlers_fcgi.html[FastCGI]: Fast Common Gateway Interface. * link:modules_handlers_scgi.html[SCGI]: Simple Common Gateway Interface. +* link:modules_handlers_uwsgi.html[uWSGI]: uWSGI protocol. * link:modules_handlers_proxy.html[HTTP reverse proxy]: Surrogate/reverse proxy handler. * link:modules_handlers_ssi.html[Server Side Includes]: SSI Server Support. * link:modules_handlers_streaming.html[Audio/Video Streaming]: Media streamer. Added: cherokee/trunk/doc/modules_handlers_uwsgi.txt =================================================================== --- cherokee/trunk/doc/modules_handlers_uwsgi.txt (rev 0) +++ cherokee/trunk/doc/modules_handlers_uwsgi.txt 2009-10-09 17:34:09 UTC (rev 3694) @@ -0,0 +1,13 @@ +== link:index.html[Index] -> link:modules.html[Modules] -> link:modules_handlers.html[Handlers] + +Handler: uWSGI +-------------- + +The `uwsgi handler` allows Cherokee to communicate with the uWSGI +server. The configuration parameters are exactly the same from the +link:modules_handlers_fcgi.html[FastCGI], so check that section of the +documentation if you want to set up this handler. + +uWSGI is feature rich and developer friendly. The +(link:http://projects.unbit.it/uwsgi[uWSGI]) protocol is derived +from SCGI.
|