Ticket #10416: cherokee-doc.patch
File cherokee-doc.patch, 2.5 KB (added by , 16 years ago) |
---|
-
docs/howto/deployment/modpython.txt
217 217 * lighttpd_ 218 218 * TUX_ 219 219 * A stripped-down version of Apache_ 220 * Cherokee_ 220 221 221 222 If, however, you have no option but to serve media files on the same Apache 222 223 ``VirtualHost`` as Django, here's how you can turn off mod_python for a … … 251 252 .. _lighttpd: http://www.lighttpd.net/ 252 253 .. _TUX: http://en.wikipedia.org/wiki/TUX_web_server 253 254 .. _Apache: http://httpd.apache.org/ 255 .. _Cherokee: http://www.cherokee-project.com/ 254 256 255 257 .. _howto-deployment-modpython-serving-the-admin-files: 256 258 -
docs/howto/deployment/fastcgi.txt
288 288 specifying multiple entries in the ``fastcgi.server`` directive. Add one 289 289 FastCGI host for each. 290 290 291 Cherokee setup 292 ============== 293 294 Cherokee is a very fast, flexible and easy to configure Web Server. It 295 supports the widespread technologies nowadays: FastCGI, SCGI, PHP, CGI, SSI, 296 TLS and SSL encrypted connections, Virtual hosts, Authentication, on the fly 297 encoding, Load Balancing, Apache compatible log files, Data Base Balancer, 298 Reverse HTTP Proxy and much more. 299 300 The Cherokee project provides a documentation to `setting up Django`_ with Cherokee. 301 302 .. _setting up Django: http://www.cherokee-project.com/doc/cookbook_django.html 303 291 304 Running Django on a shared-hosting provider with Apache 292 305 ======================================================= 293 306 -
docs/howto/static-files.txt
10 10 Django itself doesn't serve static (media) files, such as images, style sheets, 11 11 or video. It leaves that job to whichever Web server you choose. 12 12 13 The reasoning here is that standard Web servers, such as Apache_ and lighttpd_,13 The reasoning here is that standard Web servers, such as Apache_, lighttpd_ and Cherokee_, 14 14 are much more fine-tuned at serving static files than a Web application 15 15 framework. 16 16 … … 19 19 20 20 .. _Apache: http://httpd.apache.org/ 21 21 .. _lighttpd: http://www.lighttpd.net/ 22 .. _Cherokee: http://www.cherokee-project.com/ 22 23 23 24 The big, fat disclaimer 24 25 =======================