Advertisement
Guest User

Luckperm Bungee

a guest
Sep 4th, 2018
296
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.67 KB | None | 0 0
  1. ####################################################################################################
  2. # +----------------------------------------------------------------------------------------------+ #
  3. # | __ __ ___ __ __ | #
  4. # | | | | / ` |__/ |__) |__ |__) |\/| /__` | #
  5. # | |___ \__/ \__, | \ | |___ | \ | | .__/ | #
  6. # | | #
  7. # | | #
  8. # | SOURCE CODE: https://github.com/lucko/LuckPerms | #
  9. # | WIKI: https://github.com/lucko/LuckPerms/wiki | #
  10. # | BUG REPORTS: https://github.com/lucko/LuckPerms/issues | #
  11. # | | #
  12. # | Each option in this file is documented and explained here: | #
  13. # | ==> https://github.com/lucko/LuckPerms/wiki/Configuration | #
  14. # | | #
  15. # | New options are not added to this file automatically. Default values are used if an | #
  16. # | option cannot be found. The latest config versions can be obtained at the link above. | #
  17. # +----------------------------------------------------------------------------------------------+ #
  18. ####################################################################################################
  19.  
  20. # +----------------------------------------------------------------------------------------------+ #
  21. # | | #
  22. # | ESSENTIAL SETTINGS | #
  23. # | | #
  24. # | Important settings that control how LuckPerms functions. | #
  25. # | | #
  26. # +----------------------------------------------------------------------------------------------+ #
  27.  
  28. # The name of the server, used for server specific permissions.
  29. #
  30. # - When set to "global" this setting is effectively ignored.
  31. # - In all other cases, the value here is added to all players in a "server" context.
  32. # - See: https://github.com/lucko/LuckPerms/wiki/Context
  33. server: bungee
  34.  
  35. # If the servers own UUID cache/lookup facility should be used when there is no record for a player
  36. # already in LuckPerms.
  37. #
  38. # - Since BungeeCord doesn't maintain it's own UUID cache, when this option is true, LuckPerms will
  39. # try to find a uuid for a username using RedisBungee, if installed.
  40. use-server-uuid-cache: false
  41.  
  42.  
  43.  
  44.  
  45. # +----------------------------------------------------------------------------------------------+ #
  46. # | | #
  47. # | STORAGE SETTINGS | #
  48. # | | #
  49. # | Controls which storage method LuckPerms will use to store data. | #
  50. # | | #
  51. # +----------------------------------------------------------------------------------------------+ #
  52.  
  53. # How the plugin should store data
  54. #
  55. # - The various options are explained in more detail on the wiki:
  56. # https://github.com/lucko/LuckPerms/wiki/Choosing-a-Storage-type
  57. #
  58. # - Possible options:
  59. #
  60. # | Remote databases - require connection information to be configured below
  61. # |=> MySQL
  62. # |=> MariaDB (preferred over MySQL)
  63. # |=> PostgreSQL
  64. # |=> MongoDB
  65. #
  66. # | Flatfile/local database - don't require any extra configuration
  67. # |=> H2 (preferred over SQLite)
  68. # |=> SQLite
  69. #
  70. # | Readable & editable text files - don't require any extra configuration
  71. # |=> YAML (.yml files)
  72. # |=> JSON (.json files)
  73. # |=> HOCON (.conf files)
  74. # |=> TOML (.toml files)
  75. # |
  76. # | By default, user, group and track data is separated into different files. Data can be combined
  77. # | and all stored in the same file by switching to a combined storage variant.
  78. # | Just add '-combined' to the end of the storage-method, e.g. 'yaml-combined'
  79. #
  80. # - A H2 database is the default option.
  81. # - If you want to edit data manually in "traditional" storage files, we suggest using YAML.
  82. storage-method: MySQL
  83.  
  84. # The following block defines the settings for remote database storage methods.
  85. #
  86. # - You don't need to touch any of the settings here if you're using a local storage method!
  87. # - The connection detail options are shared between all remote storage types.
  88. data:
  89.  
  90. # Define the address and port for the database.
  91. # - The standard DB engine port is used by default
  92. # (MySQL: 3306, PostgreSQL: 5432, MongoDB: 27017)
  93. # - Specify as "host:port" if differs
  94. address: BUNGEE/PROXY IP
  95.  
  96. # The name of the database to store LuckPerms data in.
  97. # - This must be created already. Don't worry about this setting if you're using MongoDB.
  98. database: DATABASE NAME
  99.  
  100. # Credentials for the database.
  101. username: DATABASE USERNAME
  102. password: 'PASSWORD'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement