Status: New
Owner: ----
Labels: Type-Defect Priority-Medium

New issue 1639 by pascallouisperez: Running ReviewBoard using lighttpd (solving the 404 problem)
http://code.google.com/p/reviewboard/issues/detail?id=1639

In order to have ReviewBoard work on lighttpd, the rewriting rules which
are automatically generated (in lighttpd.conf) need to be

  url.rewrite-once = (
    "^(/media/.*)$" => "$1",
    "^(/errordocs/.*)$" => "$1",
    "^(/reviewboard.fcgi.*)$" => "$1",
    "^(/.*)$" => "/reviewboard.fcgi$1",
  )

(the 3rd rule is new).

The problem is that lighttpd rewrites the URL twice such that

  reviews.example.com/

is rewritten to

  reviews.example.com/reviewboard.fcgi/reviewboard.fcgi

which is the unrecognised. I'm not exactly sure why this happens though.

--
You received this message because you are subscribed to the Google Groups 
"reviewboard-issues" group.
To post to this group, send email to reviewboard-iss...@googlegroups.com.
To unsubscribe from this group, send email to 
reviewboard-issues+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/reviewboard-issues?hl=en.

Reply via email to