Hi Venkat, > > My fastcgi config is (added at the end of conf file), > fastcgi.debug = 1 > fastcgi.server = ( > "/django.fcgi" => ( > "main" => ( > "host" => "127.0.0.1", > "port" => 3456, > )
> > When I request the home page like, > links 'http://127.0.0.1:3456/' You shouldn't use that port number through your web browser because you have defined it as the FCGI port which is used by lighttpd *internally* to communicate with your Django process. In other words, it's not an HTTP port. Just try http://127.0.0.1/ instead or try http://127.0.0.1:nn/ where nn is the port number defined as your lighttpd listener port (it's defined by the server.port parameter in your lighttpd.conf) -Rajesh D --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---