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

July 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more

Reply
Anonymous
Not applicable

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 ACCEPTED SOLUTION
hackcrr
Memorable Member
Memorable Member

@Anonymous 

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!

View solution in original post

1 REPLY 1
hackcrr
Memorable Member
Memorable Member

@Anonymous 

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
FabCon and SQLCon Barcelona 2026

FabCon & SQLCon – Barcelona 2026

Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.

60 days of Data Days Carousel

Data Days 2026

Join Fabric Data Days 2026: 60 days of free live/on-demand sessions, challenges, study groups, and certification opportunities.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.