Unfortunately this doesn't work. I now have an extra error:
2007-11-06 23:51:48: (mod_fastcgi.c.1532) connect failed: 7 Connection
refused 111 0 /tmp/lighttpd.code.fcgi.socket-0
Removing that file and restarting lighttpd doesn't remove this error.
Thanks,
Berco
On Nov 5, 12:40 pm, Sam <[EMAIL PROTECTED]> wrote:
> Change the mount point of the FastCGI process?
> i.e. [ fastcgi.server = ( '<mointpoint>' => (( <fastcgi-
> server )) , ... ) ]
>
> Here's a test config I used:
>
> ============================================================
> server.document-root = "/<homedir>/"
>
> server.port = 8080
> server.modules = ("mod_access", "mod_alias", "mod_fastcgi")
>
> mimetype.assign = (
> ".html" => "text/html",
> ".txt" => "text/plain",
> ".jpg" => "image/jpeg",
> ".png" => "image/png",
> ".gif" => "image/gif",
> ".css" => "text/css"
> )
>
> static-file.exclude-extensions = ( ".fcgi", ".php", ".rb", "~",
> ".inc", ".cgi" )
>
> fastcgi.server = (
> "/example" => ((
> "socket" => "/tmp/lighttpd.example.fcgi.socket",
> "bin-path" => "/<homedir>/www/example.py",
> "check-local" => "disable",
> "max-procs" => 1
> ))
> )
> ============================================================
>
> .. and the web.py script is the front-page example. It could be
> accessed as "http://localhost:8080/example/Sam" (for "Hello, Sam!")
>
> Sam.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"web.py" 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/webpy?hl=en
-~----------~----~----~----~------~----~------~--~---