2016-05-22 08:57:10 +08:00
|
|
|
# LuckPerms Configuration
|
|
|
|
|
|
|
|
# The name of the server, used for server specific permissions. Set to 'global' to disable.
|
|
|
|
server: bungee
|
|
|
|
|
2016-07-12 18:50:49 +08:00
|
|
|
# The default group assigned to all users on their first join.
|
2016-05-22 08:57:10 +08:00
|
|
|
default-group: default
|
|
|
|
|
|
|
|
# If users on this server should have their global permissions/groups applied.
|
|
|
|
include-global: false
|
|
|
|
|
2016-07-25 18:18:35 +08:00
|
|
|
# If this server is in offline or online mode.
|
|
|
|
# This setting allows a player to have the same UUID across a network of offline mode/mixed servers.
|
|
|
|
|
|
|
|
# You should generally reflect the setting in server.properties here. Except when...
|
|
|
|
|
|
|
|
# 1. You have Spigot servers connected to a BungeeCord proxy, with online-mode set to false, but 'bungeecord' set to true in the spigot.yml
|
|
|
|
# AND 'ip-forward' set to true in the BungeeCord config.yml
|
2016-08-05 18:58:27 +08:00
|
|
|
# In this case, set online-mode in LuckPerms to true, despite the server being in offline mode.
|
2016-07-25 18:18:35 +08:00
|
|
|
|
|
|
|
# 2. You are only running one server instance using LuckPerms, (not a network)
|
|
|
|
# In this case, set online-mode to true no matter what is set in server.properties. (we can just fallback to the servers uuid cache)
|
|
|
|
online-mode: true
|
|
|
|
|
2016-08-07 07:16:05 +08:00
|
|
|
# If the plugin should apply wildcard permissions.
|
|
|
|
# If set to true, LuckPerms will detect wildcard permissions, and resolve & apply all registered permissions matching
|
|
|
|
# the wildcard. This will only work for plugins that define all of their permissions to the server.
|
|
|
|
apply-wildcards: true
|
|
|
|
|
2016-08-09 17:09:45 +08:00
|
|
|
# If the plugin should parse regex permissions.
|
|
|
|
# If set to true, LuckPerms will detect regex permissions, marked with "r=" at the start of the node, and resolve &
|
|
|
|
# apply all registered permissions matching the regex. This will only work for plugins that define all of their
|
|
|
|
# permissions to the server.
|
|
|
|
apply-regex: true
|
|
|
|
|
|
|
|
# If the plugin should complete and apply shorthand permissions.
|
|
|
|
# If set to true, LuckPerms will detect and expand shorthand node patterns.
|
|
|
|
apply-shorthand: true
|
|
|
|
|
2016-06-22 23:47:54 +08:00
|
|
|
# Which storage method the plugin should use.
|
2016-06-29 00:10:01 +08:00
|
|
|
# Currently supported: mysql & flatfile
|
2016-06-22 23:47:54 +08:00
|
|
|
# Fill out connection info below if you're using MySQL
|
2016-06-29 00:10:01 +08:00
|
|
|
storage-method: flatfile
|
2016-06-22 23:47:54 +08:00
|
|
|
|
2016-05-22 08:57:10 +08:00
|
|
|
sql:
|
|
|
|
address: localhost:3306
|
|
|
|
database: minecraft
|
|
|
|
username: root
|
|
|
|
password: ''
|
|
|
|
sync-minutes: 3
|