Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started

Reply
taweel
New Member

Redirect http to https for Power BI Report Server

I have on-prem power bi report server hosted on windows server. I was using port 80 for all the reports inside organization.

let's say the link to access it was: http://myserver/reports/

Now I have installed certificate and it works fine when I use https://myserver/reports/

What I want to do is when the user uses http://myserver/reports/ it will redirect to https://myserver/reports/ 

1 REPLY 1
hackcrr
Super User
Super User

@taweel 

First, you can use IIS to implement website redirection. You can refer to the following links for this. The steps they describe are basically correct:

https://stackoverflow.com/questions/51063815/redirect-http-to-https-via-iis#:~:text=In%20IIS%2C%20ri....

I would also recommend using NGINX reverse proxy because it has better management and UI.
If you don't already have NGINX installed on your server, you can install it. On Windows servers, you may need to install it through a package manager such as Chocolatey, or download and configure it manually.
Open the NGINX configuration file (usually named nginx.conf on Linux systems or located at /etc/nginx/sites-available/default).
Add a server block to listen on port 80 (HTTP) and redirect to HTTPS. Here is a basic configuration example:

 

server {
    listen 80;
    server_name myserver;

    location / {
        return 301 https://$server_name$request_uri;
    }
}

 

Make sure you have configured a separate server block to handle HTTPS requests. It should look something like this:

 

server {
    listen 443 ssl;
    server_name myserver;

    ssl_certificate /path/to/your/certificate.crt;
    ssl_certificate_key /path/to/your/private.key;

    location / {
        proxy_pass http://localhost:80; # Assuming your Power BI Report Server is running on port 80 internally
        proxy_set_header Host $host;
        proxy_set_header X-Real-IP $remote_addr;
        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
        proxy_set_header X-Forwarded-Proto $scheme;
    }
}

 

After making these changes, restart NGINX to apply the configuration:

 

sudo nginx -s reload

 

With this setup, any HTTP request to http://myserver/reports/ will be redirected to https://myserver/reports/, providing secure access to your Power BI Report Server.

 

If I have answered your question, please mark my reply as solution and kudos to this post, thank you!

Helpful resources

Announcements
Europe Fabric Conference

Europe’s largest Microsoft Fabric Community Conference

Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.

AugPowerBI_Carousel

Power BI Monthly Update - August 2024

Check out the August 2024 Power BI update to learn about new features.

August Carousel

Fabric Community Update - August 2024

Find out what's new and trending in the Fabric Community.

Top Solution Authors