Advertisement
Jxrdan62160

extDB

Sep 2nd, 2016
269
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.48 KB | None | 0 0
  1. [Main]
  2. ;Threads = 0
  3. ; Default Value is the number of CPU Cores Detected (max value is 6, min value is 2)
  4. ; Linux Chroot Environment might only Detect 1 CPU Cores i.e bind /proc
  5.  
  6. Randomize Config File = false
  7. ;This is a legacy option to randomize config file for Arma2 Servers.
  8.  
  9.  
  10. [Rcon]
  11. ;; This is functional, should be working fine. Just needs abit of testing on a live Server
  12.  
  13. Port = 2302
  14. Password = 11061958
  15.  
  16.  
  17. [Steam]
  18. ;; This is for VAC Protocol for VAC Bans + Steam Friends.
  19. ;; This currently has a bug in it, will be fixed next version.
  20. ;; Think of it as tech preview option.
  21. ;; https://steamcommunity.com/dev/apikey
  22. API Key = 86442DB63436D6B148E2488C5DB446EC
  23.  
  24.  
  25. [VAC]
  26. ;; This feature requires Steam + Rcon to be enabled.
  27. ;; Also this feature is called via SQF Code atm, i.e it doesn't auto detect players joining server yet....
  28.  
  29. Auto Ban = false
  30.  
  31. ;; For Player to get banned ( their total VAC Bans => NumberOfVACBans) AND ( Days Since their Last Ban was <= DaysSinceLastBan)
  32. ;; This is also used extDB Protocol VAC:VACBanned returned results
  33. NumberOfVACBans = 1
  34. DaysSinceLastBan = 999999999
  35.  
  36. BanDuration = 0
  37. ;; 0 = Forever, otherwise its x Minutes
  38. BanMessage = Steam VAC Banned
  39.  
  40.  
  41. [Log]
  42. ;; This is just config options for Rcon Logging + BE Logging
  43. ;; Has no effect on extDB Logging
  44. Mode = sync
  45. ;; sync / async
  46. ;; ASync is just kinder on your Harddrive, may be lose of data in the event of a crash.
  47.  
  48.  
  49. [Database1]
  50. ;; Example of SQLite
  51. Type = SQLite
  52. Name = sqlite.db
  53.  
  54. minSessions = 1
  55. ; minSession Default Value = 1
  56.  
  57. ;maxSessions = 4
  58. ; maxSession Default Value = number of Main->Threads
  59. ; You really should leave this value alone
  60. idleTime = 60
  61. ; idleTime no Default Value yet, needs to be defined.
  62. ; idleTime is the time before a database session is stopped if not used.
  63. ; If Database Sessions are greater than minSessions
  64.  
  65.  
  66. [AltisLife]
  67. ;; Example of MySQL
  68. ;; AtlisLifeRPG uses Database2 by default
  69. Type = MySQL
  70. Name = arma3life
  71. Username = root
  72. Password =
  73. IP =
  74. Port = 3306
  75.  
  76. minSessions = 1
  77. ;maxSessions = 4
  78. idleTime = 60
  79.  
  80. compress = false
  81. ; Should only use this if MySQL server is external. Also only for MySQL
  82.  
  83. Secure Auth = false
  84. ; Recommend you turn this on
  85.  
  86.  
  87. [A3W]
  88. Type = MySQL
  89. Name = arma3life
  90. Username = root
  91. Password =
  92. IP =
  93. Port = 3306
  94. minSessions = 1
  95. ;maxSessions = 4
  96. idleTime = 60
  97.  
  98. compress = false
  99. ; Should only use this if MySQL server is external. Also only for MySQL
  100.  
  101. Secure Auth = false
  102. ; Recommend you turn this on
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement