Advertisement
Guest User

Untitled

a guest
May 5th, 2015
357
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.19 KB | None | 0 0
  1. [Main]
  2. Version = 3
  3.  
  4. ;Threads = 0
  5. ; Default Value is the number of CPU Cores Detected (max value is 6, min value is 2)
  6.  
  7. Randomize Config File = false
  8. ;This is a legacy option to randomize config file for Arma2 Servers.
  9.  
  10.  
  11. [Rcon]
  12. ;; This is functional, should be working fine. Just needs abit of testing on a live Server
  13. ;; Allow for changing Address for those running server in a VM environment.
  14. IP = 127.0.0.1
  15. Port = 2302
  16.  
  17. Password =
  18.  
  19.  
  20. [RemoteAccess]
  21. ;; Remote TCP Access to extDB2
  22. Enable = false
  23.  
  24. Port = 2300
  25. MaxThreads = 4
  26. MaxQueued = 4
  27. IdleTime = 120
  28.  
  29. Password = password
  30.  
  31.  
  32. [Steam]
  33. ;; This is for VAC Protocol for VAC Bans + Steam Friends.
  34. ;; https://steamcommunity.com/dev/apikey
  35. API Key = xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
  36.  
  37.  
  38. [VAC]
  39. ;; This feature requires Steam + Rcon to be enabled.
  40. ;; Also this feature is called via SQF Code atm, i.e it doesn't auto detect players joining server yet....
  41. Auto Ban = true
  42.  
  43. ;; For Player to get banned ( their total VAC Bans => NumberOfVACBans) AND ( Days Since their Last Ban was <= DaysSinceLastBan)
  44. ;; This is also used extDB Protocol VAC:VACBanned returned results
  45.  
  46. NumberOfVACBans = 5
  47. DaysSinceLastBan = 999999999
  48. BanDuration = 0
  49. ;; 0 = Forever, otherwise its x Minutes
  50. BanMessage = Steam VAC Banned, please try again in 1 hour.
  51.  
  52.  
  53. [Log]
  54. ;; Flush Logs after each write, more work on Harddrive
  55. Flush = false
  56.  
  57. [SQLite_Example]
  58. Type = SQLite
  59. Name = sqlite.db
  60.  
  61. minSessions = 1
  62. ; minSession Default Value = 1
  63.  
  64. ;maxSessions = 4
  65. ; maxSession Default Value = number of Main->Threads
  66. ; You really should leave this value alone
  67. idleTime = 60
  68. ; idleTime no Default Value yet, needs to be defined.
  69. ; idleTime is the time before a database session is stopped if not used.
  70. ; If Database Sessions are greater than minSessions
  71.  
  72.  
  73. [MySQL_Example]
  74. Type = MySQL
  75. Name = dayz_epoch
  76.  
  77. Username = usernameorsomething
  78. Password = passwordorsomething
  79.  
  80. IP = 127.0.0.1
  81. Port = 3306
  82.  
  83. minSessions = 2
  84. ;maxSessions = 4
  85. idleTime = 60
  86.  
  87. compress = false
  88. ; Should only use this if MySQL server is external. Also only for MySQL
  89.  
  90. Secure Auth = false
  91. ; Recommend you turn this on
  92.  
  93.  
  94. [Redis_Example]
  95. Type = Redis
  96.  
  97. IP = 127.0.0.120
  98. Port = 6379
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement