~ubuntu-branches/ubuntu/lucid/python2.6/lucid

« back to all changes in this revision

Viewing changes to Doc/howto/webservers.rst

  • Committer: Bazaar Package Importer
  • Author(s): Matthias Klose
  • Date: 2010-03-11 13:30:19 UTC
  • mto: (10.1.13 sid)
  • mto: This revision was merged to the branch mainline in revision 44.
  • Revision ID: james.westby@ubuntu.com-20100311133019-sblbooa3uqrkoe70
Tags: upstream-2.6.5~rc2
ImportĀ upstreamĀ versionĀ 2.6.5~rc2

Show diffs side-by-side

added added

removed removed

Lines of Context:
270
270
* lighttpd ships its own `FastCGI module
271
271
  <http://trac.lighttpd.net/trac/wiki/Docs%3AModFastCGI>`_ as well as an `SCGI
272
272
  module <http://trac.lighttpd.net/trac/wiki/Docs%3AModSCGI>`_.
273
 
* nginx also supports `FastCGI
274
 
  <http://wiki.codemongers.com/NginxSimplePythonFCGI>`_.
 
273
* nginx also supports `FastCGI <http://wiki.nginx.org/NginxSimplePythonFCGI>`_.
275
274
 
276
275
Once you have installed and configured the module, you can test it with the
277
276
following WSGI-application::
524
523
informations on a web server.
525
524
 
526
525
Often relational database engines like `MySQL <http://www.mysql.com/>`_ or
527
 
`PostgreSQL <http://http://www.postgresql.org/>`_ are used due to their good
 
526
`PostgreSQL <http://www.postgresql.org/>`_ are used due to their good
528
527
performance handling very large databases consisting of up to millions of
529
528
entries.  These are *queried* using a language called `SQL
530
529
<http://en.wikipedia.org/wiki/SQL>`_.  Python programmers in general do not like
628
627
It has a big, international community which has created many sites using Django.
629
628
There are also quite a lot of add-on projects which extend Django's normal
630
629
functionality.  This is partly due to Django's well written `online
631
 
documentation <http://doc.djangoproject.com/>`_ and the `Django book
 
630
documentation <http://docs.djangoproject.com/>`_ and the `Django book
632
631
<http://www.djangobook.com/>`_.
633
632
 
634
633