I have been trying to redirect my SSRS's URL from HTTP URL to HTTPS. E.g(http://ServeName/Reports
to https://ServeName/Reports
).
Using this example, the IIS's URL rewrite's rule only redirect the ServerName http://ServerName
to https://ServerName
.
Reading through internet I have seen that SSRS's 80 -TCP port is not running on IIS.
Any configuration to edit?
BTW, I am using SSRS 2019 and IIS 10
I have solved this after changing some configurations.
Reporting Services Configuration manager:
Web Portal URL:
Note: After removing the access of port 80 you are allowing that port 443 will be handle by IIS. Because the port 80 is handle by SSRS's native mode.
On IIS:
On the URL Rewrite's rule:
https://{HTTP_HOST}{REQUEST_URI}
instead of https://{HTTP_HOST}/{R:1}
https://Servername/.../...
)