Hi,
Im using lighttpd. Default deploy example from manual doesnt allow css files to load becasue of the version control of static files i understand, correct me if im wrong.
Finally ive got it working using this:
$HTTP["url"] =~ "^/admin/" {
url.rewrite-once = (
"^(/.+?/static)/(.*)/$" => "/applications$1/$2",
"(^|/.*)$" => "/handler_web2py.fcgi$1",
)
Dont know if that is correct but it works.
Cheers,