Config setup: Redis

Connection section

  • Type: Should be "redis" in this case. Not REDIS or rEdIs.

  • Host: Your redis host without port. eg "localhost". For me its "redis-13861.c293.eu-central-1-1.ec2.cloud.redislabs.com"

  • Port: Not spigot-server's port, your redis port. For me its 13861

  • Password: Your redis password. For me its imnotgoingtogivemyredispasstou

  • Secure: SSL setting in this case. For me its false. If you dont know what is it, keep it as false.

Servers section

Servers to send commands. If you just want to listen for new commands, you can leave this section empty.

  • Host: Your redis host without port. eg "localhost". For me its "redis-13861.c293.eu-central-1-1.ec2.cloud.redislabs.com"

  • Port: Not spigot-server's port, your redis port. For me its 13861

  • Password: Your redis password. For me its imnotgoingtogivemyredispasstou

  • Secure: SSL setting in this case. For me its false. If you dont know what is it, keep it as false.

Config template

# The name you will specify to execute commands.
# eg: /sync hub <command>
serverName: "hub" # server name, can be everything.

connection:
  type: redis
  host: "redis-13861.c293.eu-central-1-1.ec2.cloud.redislabs.com"
  port: 13861
  password: "imnotgoingtogivemyredispasstou"
  secure: false

servers:
  bungee:
    host: "redis-13861.c293.eu-central-1-1.ec2.cloud.redislabs.com"
    port: 13861
    password: "imnotgoingtogivemyredispasstou"
    secure: false
  testserver:
    host: "redis-13861.c293.eu-central-1-1.ec2.cloud.redislabs.com"
    port: 13861
    password: "imnotgoingtogivemyredispasstou"
    secure: false

Last updated