Apologies in advance if this has been answered before, but I can't
seem to find the details in the archives. I'm having a devil of a
time setting up virtual hosting on lighttpd with Trac 0.11, and I'd
really like to avoid going to Apache if I can. What's happening is
that while I can get to trac.example.com, none of the stylesheets,
images, etc, are showing up and the login link is broken. Here's the
relevant config:
$HTTP["host"] =~ "trac.example.com" {
url.rewrite = (
"^(/trac/.*)$" => "$1",
"^(/.*)$" => "/trac/$1"
)
alias.url = ( "/trac" => "/usr/local/trac/site/htdocs/" )
# 0.11 if installed with easy_setup, it is inside the egg
directory
var.trac_fcgi_binary="/usr/local/bin/python /usr/local/lib/
python2.6/site-packages/Trac-0.11-py2.6.egg/trac/web/
fcgi_frontend.py"
fastcgi.server = ("/" =>
("trac" =>
("socket" => "/tmp/trac-fastcgi.sock",
"bin-path" => trac_fcgi_binary,
"check-local" => "disable",
"bin-environment" =>
("TRAC_ENV" => "/usr/local/trac/
site")
)
)
)
$HTTP["url"] =~ "^/login$" {
auth.require = ("/" =>
(
"method" => "digest",
"realm" => "myrealm",
"require" => "valid-user"
)
)
}
}
This is on FreeBSD 8.0 if that helps. Any assistance would be greatly
appreciated.
--
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.