Advertisement
czychuuu

Untitled

Feb 5th, 2024
44
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.93 KB | None | 0 0
  1. # - Key Setup -
  2.  
  3. # This chooses what communication method ZulfBungee uses.
  4. # pluginmessage requires no setup, but requires you to enter a connection name (see below).
  5. # socket requires more setup but allows for more flexible setups.
  6. # Generally, if you don't know what this means, leave it as pluginmessage.
  7. transport-type: "pluginmessage"
  8.  
  9. # This will toggle the display of detailed messages about what is going to the console.
  10. # When filing a bug report / checking for issues, this is extremely useful to know what exactly went wrong!
  11. debug: true
  12.  
  13. # Enables or disables global scripts.
  14. global-scripts: true
  15.  
  16. # - Socket Setup -
  17.  
  18. # This is the port that this server will bind to, which will it listen for incoming connections on.
  19. port: 10010
  20.  
  21. # The IP that this server will bind to. Similar to the "client-host" in the Spigot config.
  22. # This should usually be left as 0.0.0.0, or 127.0.0.1, but feel free to change this if you need to -
  23. # (i.e. you are on shared hosting / Pterodactyl)
  24. host: "0.0.0.0"
  25.  
  26.  
  27. # - Storage -
  28.  
  29. # What kind of database should be used to store network variables.
  30. # Currently, supported databases: MySQL, H2
  31.  
  32. # If you have no clue what this does, just leave this as the default.
  33. storage-type: "h2"
  34.  
  35. # Skript by default is case-insensitive for variable names.
  36. # If you want this functionality, enable it here.
  37. case-insensitive-variables: false
  38.  
  39. # Each option should be self-explanatory if you know what you are doing.
  40.  
  41. # If you are using H2, this will not apply - these two settings only apply to remote databases like MySQL.
  42. storage-host: "localhost"
  43. storage-port: 3306
  44.  
  45. # !! Change these from the default to improve security !!
  46. storage-username: "username"
  47. storage-password: "password"
  48.  
  49. storage-database: "database"
  50.  
  51. # - MySQL Setup -
  52.  
  53. # If you get errors in console because of SSL, disable it here, but it's better to set up SSL on the MySQL server.
  54. mysql-use-ssl: true
  55. mysql-verify-certificate: true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement