Ticket #10416: cherokee-doc.patch

File cherokee-doc.patch, 2.5 KB (added by Stephane Raimbault, 15 years ago)

Add references to Cherokee project

  • docs/howto/deployment/modpython.txt

     
    217217    * lighttpd_
    218218    * TUX_
    219219    * A stripped-down version of Apache_
     220    * Cherokee_
    220221
    221222If, however, you have no option but to serve media files on the same Apache
    222223``VirtualHost`` as Django, here's how you can turn off mod_python for a
     
    251252.. _lighttpd: http://www.lighttpd.net/
    252253.. _TUX: http://en.wikipedia.org/wiki/TUX_web_server
    253254.. _Apache: http://httpd.apache.org/
     255.. _Cherokee: http://www.cherokee-project.com/
    254256
    255257.. _howto-deployment-modpython-serving-the-admin-files:
    256258
  • docs/howto/deployment/fastcgi.txt

     
    288288specifying multiple entries in the ``fastcgi.server`` directive. Add one
    289289FastCGI host for each.
    290290
     291Cherokee setup
     292==============
     293
     294Cherokee is a very fast, flexible and easy to configure Web Server. It
     295supports the widespread technologies nowadays: FastCGI, SCGI, PHP, CGI, SSI,
     296TLS and SSL encrypted connections, Virtual hosts, Authentication, on the fly
     297encoding, Load Balancing, Apache compatible log files, Data Base Balancer,
     298Reverse HTTP Proxy and much more.
     299
     300The 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
    291304Running Django on a shared-hosting provider with Apache
    292305=======================================================
    293306
  • docs/howto/static-files.txt

     
    1010Django itself doesn't serve static (media) files, such as images, style sheets,
    1111or video. It leaves that job to whichever Web server you choose.
    1212
    13 The reasoning here is that standard Web servers, such as Apache_ and lighttpd_,
     13The reasoning here is that standard Web servers, such as Apache_, lighttpd_ and Cherokee_,
    1414are much more fine-tuned at serving static files than a Web application
    1515framework.
    1616
     
    1919
    2020.. _Apache: http://httpd.apache.org/
    2121.. _lighttpd: http://www.lighttpd.net/
     22.. _Cherokee: http://www.cherokee-project.com/
    2223
    2324The big, fat disclaimer
    2425=======================
Back to Top