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
-~----------~----~----~----~------~----~------~--~---