Change the default port

By default, the Embold application is running on port 3000. To change this, you need to follow the steps listed below:

  • Go to the directory where the Embold is installed (based on the option selected during installation).
  • Edit gamma-config.json which can be found at the following location: /gamma_ui/config/gamma-config.json
    NOTE: For docker containers please use the ā€œ-eā€ notation to change the gamma-config.json file while deployment as environmental variables.
  • Find the “gamma_port” and change the value to the one you prefer.
    Example:
From To
“gamma_port”:3000“gamma_port”: <CUSTOMPORT>
  • Restart the Embold service for Linux environment.
    sudo service gamma restart
  • Restart the Embold service for windows environment.
    net stop Gamma_UI_Service
    net start Gamma_UI_Service

Enable the SSL port

To enable SSL port for Embold application, you need to follow the steps listed below:

  1. Go to the directory where gamma is installed (based on the option selected during installation).
  2. Copy the certificate and key to the following location:/ssl
  3. Edit gamma-config.json which can be found at the following location:/gamma_ui/config/gamma-config.json
  4. Find the “ssl” and change the value to the one you prefer, for instance-
FromTo
“ssl”:
{
“key”: “$GAMMA_ROOT/ssl/certificate.key”,
“cert”: “$GAMMA_ROOT/ssl/certificate.cert”,
“port”: 5443
}
“ssl”:
{
“key”: “$GAMMA_ROOT/ssl/certificate.key”,
“cert”: “$GAMMA_ROOT/ssl/certificate.cert”,
“port”: <CUSTOMPORT>
}