Hi,
I just started looking at Django, and since I'm using mod_fcgid anyhow
for other things, I thought I'd look into using it with Django as
well. One benefit of mod_fcgid over mod_fastcgi is that it does all
process management for you, and in my impression it's quite well-
behaved.
Turns out it's quite easy to do using a modified version of Robin
Dunn's old fastcgi python module. One benefit of that module is that
it falls back transparently to cgi when running in a cgi environment,
so all that is needed to switch Django between cgi and fastcgi is to
change one line in apache config
<Directory /home/*/public_html/django/>
Options ExecCGI
AddHandler fcgid-script .cgi
# AddHandler cgi-script .cgi
</Directory>
Is there any interest in this, and if so, what would be a good place
to post my code? Thanks, Michael
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Django users" group.
To post to this group, send email to [email protected]
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
-~----------~----~----~----~------~----~------~--~---