Advertisement
Guest User

Untitled

a guest
Jul 21st, 2017
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.15 KB | None | 0 0
  1. # ---------------------------------------------------------------------------
  2. # Game Server Settings
  3. # ---------------------------------------------------------------------------
  4. # This is the server configuration file. Here you can set up the connection information for your server.
  5. # This was written with the assumption that you are behind a router.
  6. # Dumbed Down Definitions...
  7. # LAN (LOCAL area network) - typically consists of computers connected to the same router as you.
  8. # WAN (WIDE area network) - typically consists of computers OUTSIDE of your router (ie. the internet).
  9. # x.x.x.x - Format of an IP address. Do not include the x'es into settings. Must be real numbers.
  10. # ---------------------------------------------------------------------------
  11. # Networking
  12. # ---------------------------------------------------------------------------
  13. #
  14. # Note: External/Internal address definitions was moved to the ipconfig.xml
  15. #
  16.  
  17. # Where's the Login server this gameserver should connect to
  18. # Default: 127.0.0.1
  19. LoginHost = 127.0.0.1
  20.  
  21. # TCP port the login server listen to for gameserver connection requests
  22. # Default: 9014
  23. LoginPort = 9014
  24.  
  25. # Bind address for gameserver. You should not need to change it in most cases.
  26. # Default: * (0.0.0.0)
  27. GameserverHostname = EXTERNAL IP
  28.  
  29. # Default: 7777
  30. GameserverPort = 7777
  31.  
  32.  
  33. # ---------------------------------------------------------------------------
  34. # Database
  35. # ---------------------------------------------------------------------------
  36. # Specify the appropriate driver and url for the database you're using.
  37. # Examples:
  38. # Driver = com.mysql.jdbc.Driver (default)
  39. # Driver = org.hsqldb.jdbcDriver
  40. # Driver = com.microsoft.sqlserver.jdbc.SQLServerDriver
  41. Driver = com.mysql.jdbc.Driver
  42. # Database URL
  43. # URL = jdbc:mysql://localhost/l2jdb (default)
  44. # URL = jdbc:hsqldb:hsql://localhost/l2jdb
  45. # URL = jdbc:sqlserver://localhost/database = l2jdb/user = sa/password =
  46. URL = jdbc:mysql://localhost/l2jgdb
  47. # Database user info (default is "root" but it's not recommended)
  48. Login = l2j
  49. # Database connection password
  50. Password = PASS
  51.  
  52. # Default: 100
  53. MaximumDbConnections = 100
  54.  
  55. # Default: 0
  56. MaximumDbIdleTime = 0
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement