Below is my web.conf
[settings] serverName = lower_environment_3
I want to display the above serverName detail in login page. Tried this way and it doesn't work
hostName = cherrypy.request.app.config['global'].get('serverName', 'host_notset')
Any other way I could achieve this?