Advertisement
Guest User

Untitled

a guest
Feb 1st, 2023
19
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.15 KB | None | 0 0
  1. # - Key Setup -
  2.  
  3. # The port which you defined in your proxy config.
  4. server-port: 8000
  5.  
  6. # The IP of your proxy.
  7. server-host: "0.0.0.0"
  8.  
  9. # The port which this client (this Spigot server) will bind to, so it can listen for the proxy.
  10. client-port: 8001
  11.  
  12. # The IP this client will bind to.
  13. # 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 -
  14. # (i.e. you are on shared hosting / Pterodactyl)
  15. client-host: "0.0.0.0"
  16.  
  17. # - Options -
  18.  
  19. # How many milliseconds it will wait for a connection.
  20. # A timeout will be pronounced if the server does not respond in this time.
  21. connection-timeout: 2000
  22.  
  23. # Time in milliseconds that Skript will wait from a response from the proxy in each, condition, effect and expression.
  24. # Decreasing this will improve overall performance, but make sure this doesn't go below the ping between the client and the proxy -
  25. # as it will drop the packet!
  26. packet-response-time: 1000
  27.  
  28.  
  29. # This will toggle the display of detailed messages about what is going to the console.
  30. # When filing a bug report / checking for issues, this is extremely useful to know what exactly went wrong!
  31. debug: false
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement