Advertisement
Guest User

Untitled

a guest
Mar 20th, 2019
128
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 3.82 KB | None | 0 0
  1. # The IP to listen to. Use 0.0.0.0 if you wish to listen to all interfaces on your server. (All IP addresses)
  2. # This defaults to the IP you have configured your server to listen on, or 0.0.0.0 if you have not configured this.
  3. host: 54.39.239.185
  4.  
  5. # Port to listen for new votes on
  6. port: 8192
  7.  
  8. # Whether or not to print debug messages. In a production system, this should be set to false.
  9. # This is useful when initially setting up NuVotifier to ensure votes are being delivered.
  10. debug: false
  11.  
  12. # All tokens, labeled by the serviceName of each server list.
  13. tokens:
  14.  # Default token for all server lists, if another isn't supplied.
  15.   default: n187c6fm0cm92g89uo4h4aksgl
  16.  
  17. # Setting this option to true will disable handling of Protocol v1 packets. While the old protocol is not secure, this
  18. # option is currently not recommended as most voting sites only support the old protocol at present.
  19. disable-v1-protocol: false
  20.  
  21. # Configuration section for all vote forwarding to NuVotifier
  22. forwarding:
  23.  # Sets whether to set up a remote method for fowarding. Supported methods:
  24.   # - none - Does not set up a forwarding method.
  25.   # - pluginMessaging - Sets up plugin messaging.
  26.   # - proxy - Proxies votes to other NuVotifier servers from this server.
  27.   method: proxy
  28.   pluginMessaging:
  29.     channel: nuvotifier:votes
  30.  
  31.     #Only send votes to certain servers. If a server is present on excludedServers, then votes will NOT be forwarded
  32.     #to them. If excludedServers is not present, votes will be sent to all servers.
  33.     # If onlySendToJoinedServer is true and a player is on one of these servers, NuVotifier will process the vote as if the
  34.     # player was not on the network at all.
  35.     #excludedServers:
  36.     #- server1
  37.     #- server2
  38.  
  39.     # If uncommented, turns excludedServers into an includedServers, where only servers on the list will be used.
  40.     #whitelist: true
  41.  
  42.     # Sets which cache to use if there are no players on the server that the vote is being sent to. Supported caches:
  43.     # - none - Votes will simply be lost when no players are present on the server.
  44.     # - memory - Votes will be cached in memory when no players are present. When Bungee is restarted, the votes will be lost.
  45.     # - file - Votes will be saved to a local file every 3 minutes and on shutdown and reloaded when Bungee is restarted. This is suitable for
  46.     #   most set ups.
  47.     cache: file
  48.     # Only sends the vote to the server in which the player is currently joined.
  49.     onlySendToJoinedServer: false
  50.     #Sets which server to send the vote in the event the player is not online when the vote is cast
  51.     #If you do not want the vote forwarded to a fallback, set this value to empty ('')
  52.     #ONLY USED IF onlySendToJoinedServer is true!!
  53.     joinedServerFallback: 'Hub'
  54.     # Defines how quickly to dump votes over a player's connection when offloading a cache in votes per second
  55.     dumpRate: 5
  56.     # Options for file caching.
  57.     file:
  58.       name: cached-votes.json
  59.       # days before a vote is considered 'dead' - removed from cache with a console warning
  60.       cacheTime: 10
  61.     # Options for memory caching.
  62.     memory:
  63.      # days before a vote is considered 'dead' and removed from memory. All votes are removed when the server restarts. -1 signifies no TTL
  64.       cacheTime: -1
  65.   # Specify servers to proxy votes for.
  66.   proxy:
  67.     Hub:
  68.       address: 142.44.151.233
  69.       port: 25581
  70.       token: ggohsbijema8gh87tgb0ie6i6
  71.     KitPvP:
  72.       address: 144.217.29.212
  73.       port: 25571
  74.       token: igr13q9dgtolb18r7piot5jkv8
  75.     Factions:
  76.       adress: 192.99.207.143
  77.       port: 25595
  78.       token: go4dd27dt8g5k2m6j0crn4kv49
  79.     Survival:
  80.       adress: 149.56.159.4
  81.       port: 25593
  82.       token: c3oi7hooko3tpknrp1mp0hchm5
  83.     Factions:
  84.       adress: 54.39.239.185
  85.       port: 25578
  86.       token: bbkr1supks2uruh2gttkinmf7
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement