What specifically is not working? Can you post your error log? Are you
using fast-cgi and flup?
This is the lighttpd.conf for my development box:
server.modules = ("mod_fastcgi","mod_rewrite","mod_accesslog","mod_setenv")
server.document-root = "/home/bjorn/pythonWWW2/"
server.port = 3030
accesslog.filename = "/var/log/lighttpd/access.log"
server.errorlog = "/var/log/lighttpd/error.log"
server.username = "www"
setenv.add-response-header = (
"Cache-Control" => "no-cache"
)
$HTTP["host"] != "static.tipling.dyndns.info" {
fastcgi.server = ( "/code.py" =>
(( "socket" => "/tmp/fastcgi.socket",
"bin-path" => "/home/bjorn/pythonWWW2/code.py",
"max-procs" => 1,
"bin-environment" => (
"REAL_SCRIPT_NAME" => ""
),
"check-local" => "disable"
))
)
url.rewrite-once = (
"^/favicon.ico$" => "/static/favicon.ico",
"^/static/(.*)$" => "/static/$1",
"^/(.*)$" => "/code.py/$1",
)
On 9/12/07, Tzury <[EMAIL PROTECTED]> wrote:
>
> > See:
> > http://code.google.com/p/modwsgi/wiki/IntegrationWithWebPy
> > http://code.google.com/p/modwsgi/wiki/ConfigurationGuidelines
> > Graham
>
> I have read all those and more and yet cannot get it working on
> windows neither under apache nor under lighttpd either with mod_python
> or mod_wsgi or fastcgi or cgi.
> If you have a sample code.py + .conf that you can share I'll be glad.
> You will save me tremendous amount of expensive time.
>
>
> >
>
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---