Webinterface SSL Certificate
An SSL certificate is used to encrypt the data transmitted between your web browser and the webinterface, ensuring that the information remains private and secure.
Steps to Add an SSL Certificate
- Stop the Bot: Ensure the bot is not running before making any changes.
- Open the
config.iniFile: Use a text editor to open theconfig.inifile. - Add the SSL Key File Path:
- Under the
[webinterface]section, addssl_keyfile = path/to/key.pemif it doesn’t exist. - Replace
path/to/key.pemwith the actual path to your SSL key file.
- Under the
- Add the SSL Certificate File Path:
- Still under the
[webinterface]section, addssl_certfile = path/to/cert.pemif it doesn’t exist. - Replace
path/to/cert.pemwith the actual path to your SSL certificate file.
- Still under the
- Save the
config.iniFile: Save the changes to theconfig.inifile. - Start the Bot: Restart the bot to apply the changes.
Example Configuration
[webinterface]
ssl_keyfile = path\to\key.pem
ssl_certfile = path\to\cert.pem