Hi, I've been reading this to get lightTPD and fastcgi configured on my machine: http://www.djangoproject.com/documentation/fastcgi/
There, it says to add this to your lighttpd.conf: ======================================== server.document-root = "/home/user/public_html" fastcgi.server = ( "/mysite.fcgi" => ( "main" => ( # Use host / port instead of socket for TCP fastcgi # "host" => "127.0.0.1", # "port" => 3033, "socket" => "/home/user/mysite.sock", "check-local" => "disable", ) ), ) ======================================== I have run this call to start fastcgi python manage.py runfcgi method=threaded protocol=fastcgi host=127.0.0.1 port=3033 Here is my question: The mysite.fcgi file doesn't matter, right? It doesn't have to exist as lightTPD knows about the fastcgi through the host and port settings, right? Thanks, Ivan Kirigin www.kirigin.com --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---