Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. Log in to a shell on the Abiquo server as a user with root permissions
  2. Edit the client-config-custom.json file to add new secured zone enterprise themes

    Code Block
    cd /var/www/html/ui/config
    vi client-config-custom.json
  3. Edit the file and add the default theme and the custom themes within the brackets { and }. 

    Code Block
    {  "client.themes": [
     	"abicloudDefault",
     	"my_custom_theme"
     ]
    }
    Note

    You must add abicloudDefault or the user interface will not load properly

    Check your JSON file format with a JSON checker to ensure that the UI will load properly

  4. Restart the Apache daemon to load files into the cache

    Code Block
    service httpd restart

...