[Pkg-trac-devel] Trac + lighttpd + python2.5 broken ?
Fathi BOUDRA
fabo at debian.org
Tue Apr 15 07:05:52 UTC 2008
Hi,
since latest Sid updates (lighttpd and python2.5), my trac setup doesn't work anymore.
Any particular things to do ?
cheers,
Fathi
-------------- next part --------------
# Trac configuration for lighttpd
server.modules += ("mod_alias")
server.modules += ("mod_auth")
server.modules += ("mod_fastcgi")
alias.url += ("/trac/" => "/usr/share/trac/htdocs/")
fastcgi.server += (
"/projects" => (
"trac" => (
"socket" => "/tmp/trac.sock",
"bin-path" => "/usr/share/trac/cgi-bin/trac.fcgi",
"check-local" => "disable",
"min-procs" => 1,
"max-procs" => 3,
"bin-environment" => (
"TRAC_ENV_PARENT_DIR" => "/srv/trac/projects/",
"PYTHON_EGG_CACHE" => "/srv/trac/cache"
)
)
)
)
auth.backend = "htdigest"
auth.backend.htdigest.userfile = "/srv/trac/htdigest"
$HTTP["url"] =~ "^/projects/.*/login$" {
auth.require = (
"/" => (
"method" => "digest",
"realm" => "TracRealm",
"require" => "valid-user"
)
)
}
More information about the Pkg-trac-devel
mailing list