August 2, 2013

White label branded panel via SSL

WMSPanel as white label branded panel provides the ability to present reports and Nimble Streamer control via custom domain with custom logo without mentioning WMSPanel itself.

You can buy SSL certificate and set up a domain with SSL proxy to our website.

Here are the steps to make your branded panel available via HTTPS. Let's say you want to have branded panel for https://panel.example.com/
  1. In your WMSPanel account go to Settings / Branded panel menu and add panel.example.com domain with proper logo (if one is needed).
  2. Bring up SSL proxy at one of the servers in your infrastructure.
  3. Set up panel.example.com domain in your DNS to point to your proxy.
  4. Buy a certificate for panel.example.com (you probably have one already).
  5. In your SSL proxy, map panel.exampler.com to partners-ssl-cf.wmspanel.com
Here is an example of nginx configuration:

server {

    listen 80;

    server_name panel.example.com;

    return 301 https://$server_name$request_uri;

}

server {

    listen 443 ssl;

    ssl_certificate         /etc/nginx/ssl/nginx.crt;

    ssl_certificate_key     /etc/nginx/ssl/nginx.key;

    server_name panel.example.com;

 

    location / {

        proxy_pass https://partners-ssl-cf.wmspanel.com/;

        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;

        proxy_set_header Partners-Host $http_host;

        proxy_redirect off;

        break;

    }

}


That's it. When you go to https://panel.example.com/, your request is proxied to the WMSPanel as branded domain. So all pages will have proper logo for everyone who accesses the panel via new domain.

You can contact us if you have any questions about setting up branded panel.

Read more about slice-related features in on the dedicated Slices & Branding page.

Related documentation


End user reportingCustom CSS for white label

No comments:

Post a Comment

If you face any specific issue or want to ask some question to our team,
PLEASE USE OUR HELPDESK

This will give much faster and precise response.
Thank you.

Note: Only a member of this blog may post a comment.