Enabling Meeting Configuration Changes
About this task
- Docker
- custom.env
- .env
- docker-compose.yml
- Kubernetes
- helm/values.yaml
Note: These values are case sensitive and must be entered in lower case.
Procedure
-
Shut down the Meeting server.
- Docker
docker-compose down
- Kubernetes
helm uninstall sametime-meetings
In helm, the term uninstall is terminating the deployment. Additionally, the command assumes you are in the helm directory. The period (.) represents the current directory. - Docker
- Modify the configuration file.
- Save changes to the configuration files.
-
Docker only: Delete the jitsi-conifg directory.
Where r = recursive and f - force.rm -rf jitsi-config/
The jitsi-config directory on Docker rebuilds on startup with the new configuration values.
-
Start the Meeting server.
- Docker
docker-compose up -d
- Kubernetes
In helm, the term install is a deployment of the applications. Additionally, the command assumes you are in the helm directory. The period (.) represents the current directory.helm install sametime-meetings
- Docker