RADIUSdesk

This is an old revision of the document!


White Label an Install of RADIUSdesk

  • We realized there are by now quite a few deployments of RADIUSdesk out there.
  • Some of these deployments require White Labeling.
  • If you want to White Label your install then this page is for you.

Change the location from where the pages are served

  • Traditionally the optimized pages are served from the /usr/share/nginx/html/rd/build/production/Rd directory.
  • Do the following to serve it from the Webroot.
 sudo cp -R /usr/share/nginx/html/rd/build/production/Rd/* /usr/share/nginx/html/

Change the login screen

  • The login screen does not know who is about to log in so you can not give user related feedback.
  • Remember by changing the license message does not free you from the obligations imposed by the GPL license under which this software is released.
sudo vi  /usr/share/nginx/html/resources/js/config.js
  • Look for the following lines and change according to what you require
headerName      : 'RADIUSdesk',
footerName      : 'RADIUSdesk',
footerLicense   : '2012-2017 GPL license',
  • Reload the page.
  • It should now reflect the changes.

Change the Page Title

  • The default page title is *Rd*.
  • To change that to something else do the following:
sudo vi  /usr/share/nginx/html/index.html
  • Look for the following and change to your liking.
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
<title>Rd</title>