...
- Log in to a shell on the Abiquo server as a user with root permissions
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
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
Restart the Apache daemon to load files into the cache
Code Block service httpd restart
...