> > This week I decided to give a try to a new configuration. I'm now > > running django on lighttpd / fcgi and I have no swap at all. > > So I'm aware the mod_python is the prefered way to use django ... buy > > I'm quite happy with that new server configuration :) > > Can you give some more details about any changes you made on both > apache and lightty that might account for this?
I didn't change a single line of code in my django applications. They are running the same way with apache/mod_python and lighttpd/fcgi To setup lighttpd/fcgi with django I used the following howto: http://manuals.textdrive.com/read/chapter/86 With some differences : 1- I don't use apache mod_proxy , so I stop at point 3.4 2- main.fcgi is an empty file in /home/django/public/ In lighttpd : enable mod_rewrite & mod_fastcgi $HTTP["host"] =~ "(^|\.)domaine.com" { server.document-root = "/home/django/public/" fastcgi.server = ("/main.fcgi" => ("main" => ("socket" => "/tmp/ project.socket","check-local" => "disable")),) url.rewrite = ("^(.*)$" => "/main.fcgi$1") } xav --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---