Hi,

I've installed trac-11rc1 and I use it with Lighttpd using FastCGI.
After some tinkering I got everything to work properly except the
Clean URLs part. The clean urls work fine when some one access them,
e.g.
http://trac.example.com/project1/timeline
But all the links trac generates point to the trac.fcgi script. E.g.
http://trac.example.com/trac.fcgi/project1/timeline

So the problem is only with the links (the html code) that Trac
generates.

The relevent part from my lighttpd.conf is:

        url.rewrite = (
                "^/(.*)\.(.+)$" => "$0",
                "^/infinitettt(.*/?)$" => "/trac.fcgi/$0"
        )
        fastcgi.server += ("/trac" =>
                ("trac" =>
                        (
                                "socket" => "/tmp/trac.sock",
                                "bin-path" => "/home/guyru/
trac.guyrutenberg.com/trac.fcgi",
                                "check-local" => "disable",
                                "bin-environment" =>
                                        ("TRAC_ENV_PARENT_DIR" => "/
home/guyru/trac.guyrutenberg.com/")
                        )
                )
        )

I've also tried setting TRAC_URI_ROOT (as I seen in posts here), but
it didn't fix it.

I would really appreciate if some one good give me a pointer on how to
fix it.

Thanks,

Guy

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Trac 
Users" group.
To post to this group, send email to trac-users@googlegroups.com
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