Skip to content

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

  1. Stop the Bot: Ensure the bot is not running before making any changes.
  2. Open the config.ini File: Use a text editor to open the config.ini file.
  3. Add the SSL Key File Path:
    • Under the [webinterface] section, add ssl_keyfile = path/to/key.pem if it doesn’t exist.
    • Replace path/to/key.pem with the actual path to your SSL key file.
  4. Add the SSL Certificate File Path:
    • Still under the [webinterface] section, add ssl_certfile = path/to/cert.pem if it doesn’t exist.
    • Replace path/to/cert.pem with the actual path to your SSL certificate file.
  5. Save the config.ini File: Save the changes to the config.ini file.
  6. 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