I'm on SSRS 2012 in Native mode. The configuration doesn't seem to have changed much from SSRS 2008, which I upgraded from, so the issue applies to both versions (however, if there's a solution, it may or may not apply to both).
I am in a situation where I would like to serve up the ReportManager web site from one set of ports on the external side of a firewall, but internally, have SSRS setup on a different port. Does anyone know how this can be accomplished?
Details
The reason this is an issue is because the SSRS code insists on constructing full, absolute URLs to the different locations within the ReportManager web site. (IMO, this is just one of many significant/crippling design flaws in SSRS) If it would just use URLs that didn't attempt to specify the domain+port, this wouldn't be an issue.
Example
Let's start with an external URL of "http://reports.example.com/ssrs", and ReportManager is configured to live on port 8080 (your port forward goes from port 80 to 8088, of course). If you go to the external URL, you'll hit the site just fine; let's ignore the AuthC subsystem and assume you logged in OK. For some of the links (e.g. "Details View", "Move", "Delete", etc.), now, you won't go where you expected because SSRS tries to send you to "http://reports.example.com:8080/ssrs/...". You can manually fix the link by removing the port, and you'll get to the page. There are differences in what URLs are broken between SSRS 2012 and SSRS 2008, but the issue is still there.