hi, I thought I got confused about webpath. assume my webpath set as
"/test" and I set "tg.url("/") in .kid file and "turbogears.url("/") in
controller file. the kid file works fine but the controller redirect to
/test/test path. I currently use lighttpd and mod_proxy with TG. here's
my partly configure of lighttpd, is there anything wrong? thanks.
$HTTP["host"] == "test.com" {
$HTTP["url"] =~ "^/test" {
server.document-root = "/home/chongren/test/"
$HTTP["url"] !~ "^/static" {
proxy.server = (
"" => (
(
"host" => "127.0.0.1",
"port" => 8888
)
)
)
}
}
}
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"TurboGears" 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/turbogears
-~----------~----~----~----~------~----~------~--~---