Advertisement
Guest User

Untitled

a guest
Apr 3rd, 2017
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.19 KB | None | 0 0
  1. ## Azure Emulator System Configuration File
  2. ## Must be edited for the server to work
  3.  
  4. ## MySQL Configuration
  5. db.hostname=127.0.0.1
  6. db.port=3306
  7. db.username=root
  8. db.password=password
  9. db.name=database
  10. db.type=MySQL
  11.  
  12. ## MySQL pooling setup (controls amount of connections)
  13. db.pool.minsize=10
  14. db.pool.maxsize=250
  15.  
  16. ## Game TCP/IP Configuration
  17. game.tcp.bindip=127.0.0.1
  18. game.tcp.port=30000
  19. game.tcp.conlimit=100000
  20. game.tcp.enablenagles=true
  21.  
  22.  
  23. ## When using a proxy, your port could be different. Set here the proxy port.
  24. ## If you don't use a proxy, set the same port as 'game.tcp.port'.
  25. game.tcp.port.proxy=30000
  26.  
  27. ## Anti-DDOS
  28. ## Note: Keep this disabled this if you are using a proxy.
  29. game.tcp.antiddos=false
  30. game.tcp.conperip=1500
  31.  
  32. ## MUS TCP/IP Configuration
  33. mus.tcp.bindip=127.0.0.1
  34. mus.tcp.port=30001
  35. mus.tcp.allowedaddr=127.0.0.1
  36.  
  37. ## Client configuration
  38. client.ping.enabled=1
  39. client.ping.interval=20000
  40. client.maxrequests=300
  41.  
  42. ## Developer Settings
  43. Debug=false
  44.  
  45. ## Language System
  46. system.lang=english
  47.  
  48. ## Console Clear Timer
  49. console.clear.enabled=false
  50. console.clear.time=60000
  51.  
  52. ## Bots Settings
  53. game.roomswithbotscolor=0
  54. game.botdefaultcolor=31
  55. game.botbadge=BOT
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement