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:
- Go to the directory where gamma is installed (based on the option selected during installation).
- Copy the certificate and key to the following location:
/ssl - Edit gamma-config.json which can be found at the following location:
/gamma_ui/config/gamma-config.json - Find the “ssl” and change the value to the one you prefer, for instance-
From | To |
“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> } |