Hi, I was trying to run trac with fastcgi on lighttpd. But don't know
why after I setting up fastcgi.server and auth.require I could not
open the login page. It seems the login page was keeping reading and
reading but didn't display anything. Here's the configuration of mine.
Any help would be appreciated.

$HTTP["host"] == "trac.test.org" {
    $HTTP["url"] =~ "^/.*/login$" {
        auth.require = ("/" =>  (
                "method" => "basic",
                "realm" => "trac",
                "require" => "valid-user"
            )
        )
    }
    fastcgi.server = (
        "/" =>  ("trac" =>  (
            "socket"    =>  "/tmp/trac-fastcgi.socket",
            "bin-path"  =>  "/usr/share/trac/cgi-bin/trac.fcgi",
            "check-local" => "disable",
            "bin-environment"   =>  ("TRAC_ENV_PARENT_DIR" =>  "/home/
svn/trac/",
                                     "PYTHON_EGG_CACHE" => "/home/
svn/.python-eggs")
        ))
    )
}
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Trac 
Users" 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/trac-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to