2️Plugin Configuration

Open the main configuration file (config.json) and fill in the following fields:

"database": {
  "host": "Your database server IP",
  "port": 3306,
  "name": "Your database name",
  "username": "Your database username",
  "password": "Your database password",
  "useSSL": false
},
"webserver": {
  "port": 12345, // Port for the plugin webserver
  "ip": "Your Minecraft server's public IP",
  "domain": {
    "use": true, // Set to true if you want to use a domain
    "domain": "example.com", // Your domain
    "https": true // Set to true if you use HTTPS
  }
},
"discord": {
  "guildId": "Your Discord server ID",
  "client": {
    "id": "Your Discord application Client ID",
    "secret": "Your Discord application Client Secret"
  },
  "bot": {
    "token": "Your bot token",
    "presence": "Status text displayed on Discord"
  }
}

Important:

  • If domain.use is set to true, the plugin automatically disables direct access via IP and port.

  • If you don't want to use a custom domain, set domain.use to false and you will access the web interface via IP and port.


Last updated