...
See the document: Additional technical OpenGate Containers information
3. Sample Master + Node + WebRTC installation
3.1 OpenGate Master installation
Run the install command, specifying master option.
...
Info |
---|
If you want to migrate an environment from a previous OpenGate version, follow the restore process described down. |
...
3.2. OpenGate Node installation
Run the install command, specifying node option.
...
Copy the SSH public key you generated on the Master. Either manually with a graphical SFTP/SCP client or by executing on the node:
Code Block scp opengate@MASTERIP:secrets/ssh_key.pub secrets/ssh_key.pub
Where opengate is the user you configured on the operating system of the Master, and MASTERIP is its IP address. You will need to correctly enter the password for the opengate user of the Master machine when prompted.
Generate self-signed certificates if you don't have your own:
Code Block openssl req -x509 -nodes -newkey rsa:4096 -keyout key.pem -out cert.pem -sha256 -days 3650
And concatenate the two resulting files into a single one at the corresponding path:
Code Block cat key.pem cert.pem > secrets/asterisk.pem
...
3.3. OpenGate WebRTC Gateway installation
Run the install command, specifying webrtc option.
...