Advertisement
Guest User

Untitled

a guest
Feb 1st, 2023
25
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.81 KB | None | 0 0
  1. # - Key Setup -
  2.  
  3. # This is the port that this server will bind to, which will it listen for incoming connections on.
  4. port: 8000
  5.  
  6. # The IP that this server will bind to. Similar to the "client-host" in the Spigot config.
  7. # 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 -
  8. # (i.e. you are on shared hosting / Pterodactyl)
  9. host: "0.0.0.0"
  10.  
  11. # - Options -
  12.  
  13. # This will toggle the display of detailed messages about what is going to the console.
  14. # When filing a bug report / checking for issues, this is extremely useful to know what exactly went wrong!
  15. debug: true
  16.  
  17. # Enables or disables global scripts.
  18. global-scripts: true
  19.  
  20. # - Storage -
  21.  
  22. # What kind of database should be used to store network variables.
  23. # Currently, supported databases: MySQL, H2
  24.  
  25. # If you have no clue what this does, just leave this as the default.
  26. storage-type: "h2"
  27.  
  28. # Each option should be self-explanatory if you know what you are doing.
  29.  
  30. # If you are using H2, this will not apply - these two settings only apply to remote databases.
  31. storage-host: "localhost"
  32. storage-port: 3306
  33.  
  34. # !! Change these from the default to improve security !!
  35. storage-username: "username"
  36. storage-password: "password"
  37.  
  38. storage-database: "database"
  39.  
  40. # [MySQL Setup]
  41.  
  42. # If you get errors in console because of SSL, disable it here, but it's better to set up SSL on the MySQL server.
  43. mysql-use-ssl: true
  44. mysql-verify-certificate: true
  45.  
  46.  
  47. # - Security -
  48.  
  49. # [Port Whitelisting]
  50.  
  51. # Enable this option if you want to only allow ports from a defined list to be able to connect to this proxy.
  52. # Useful if you are on a shared machine and want to prevent unwanted connections to your proxy.
  53.  
  54. port-whitelist: true
  55.  
  56. # The ports you want to allow connecting should be defined here:
  57.  
  58. ports:
  59. - 8000
  60. - 8001
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement