_default.cfg 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208
  1. ##################################
  2. ######## Default Settings ########
  3. ##################################
  4. # DO NOT EDIT, ANY CHANGES WILL BE OVERWRITTEN!
  5. # Copy settings from here and use them in either:
  6. # common.cfg - applies settings to every instance.
  7. # [instance].cfg - applies settings to a specific instance.
  8. #### Game Server Settings ####
  9. ## Predefined Parameters | https://docs.linuxgsm.com/configuration/start-parameters
  10. ip="0.0.0.0"
  11. port="7777"
  12. queryport="7779"
  13. defaultmap="AOCTD-Frigid_p"
  14. ## Server Parameters | https://docs.linuxgsm.com/configuration/start-parameters#additional-parameters
  15. startparameters="${defaultmap}?steamsockets -multihome=${ip} -Port=${port} -QueryPort=${queryport} -seekfreeloadingserver -configsubdir=${selfname} -log=${gamelog}"
  16. #### LinuxGSM Settings ####
  17. ## LinuxGSM Stats
  18. # Send useful stats to LinuxGSM developers.
  19. # https://docs.linuxgsm.com/configuration/linuxgsm-stats
  20. # (on|off)
  21. stats="off"
  22. ## Notification Alerts
  23. # (on|off)
  24. # Display IP | https://docs.linuxgsm.com/alerts#display-ip
  25. displayip=""
  26. # More info | https://docs.linuxgsm.com/alerts#more-info
  27. postalert="off"
  28. # Alert on Start/Stop/Restart
  29. statusalert="off"
  30. # Discord Alerts | https://docs.linuxgsm.com/alerts/discord
  31. discordalert="off"
  32. discordwebhook="webhook"
  33. # Email Alerts | https://docs.linuxgsm.com/alerts/email
  34. emailalert="off"
  35. email="email@example.com"
  36. emailfrom=""
  37. # Gotify Alerts | https://docs.linuxgsm.com/alerts/gotify
  38. gotifyalert="off"
  39. gotifytoken="token"
  40. gotifywebhook="webhook"
  41. # IFTTT Alerts | https://docs.linuxgsm.com/alerts/ifttt
  42. iftttalert="off"
  43. ifttttoken="accesstoken"
  44. iftttevent="linuxgsm_alert"
  45. # ntfy Alerts | https://docs.linuxgsm.com/alerts/ntfy
  46. ntfyalert="off"
  47. ntfytopic="LinuxGSM"
  48. ntfyserver="https://ntfy.sh"
  49. ntfytoken=""
  50. ntfyusername=""
  51. ntfypassword=""
  52. ntfypriority=""
  53. ntfytags=""
  54. # Matrix Alerts | https://docs.linuxgsm.com/alerts/matrix
  55. matrixalert="off"
  56. matrixhomeserver="matrix.org"
  57. matrixtoken="accesstoken"
  58. matrixroom=""
  59. # Pushbullet Alerts | https://docs.linuxgsm.com/alerts/pushbullet
  60. pushbulletalert="off"
  61. pushbullettoken="accesstoken"
  62. channeltag=""
  63. # Pushover Alerts | https://docs.linuxgsm.com/alerts/pushover
  64. pushoveralert="off"
  65. pushovertoken="accesstoken"
  66. pushoveruserkey="userkey"
  67. # Rocket.Chat Alerts | https://docs.linuxgsm.com/alerts/rocket.chat
  68. rocketchatalert="off"
  69. rocketchatwebhook="webhook"
  70. # Slack Alerts | https://docs.linuxgsm.com/alerts/slack
  71. slackalert="off"
  72. slackwebhook="webhook"
  73. # Telegram Alerts | https://docs.linuxgsm.com/alerts/telegram
  74. # You can add a custom cURL string eg proxy (useful in Russia) in "curlcustomstring".
  75. # For example "--socks5 ipaddr:port" for socks5 proxy see more in "curl --help all".
  76. telegramapi="api.telegram.org"
  77. telegramalert="off"
  78. telegramtoken="accesstoken"
  79. telegramchatid=""
  80. telegramthreadid=""
  81. telegramsilentnotification="false"
  82. curlcustomstring=""
  83. ## Stop | https://docs.linuxgsm.com/commands/start-stop-restart
  84. stoponlyifnoplayers="off"
  85. stoponlyifnoplayersallcommands="on"
  86. ## Updating | https://docs.linuxgsm.com/commands/update
  87. updateonstart="off"
  88. ## Backup | https://docs.linuxgsm.com/commands/backup
  89. maxbackups="4"
  90. maxbackupdays="30"
  91. stoponbackup="on"
  92. ## Logging | https://docs.linuxgsm.com/features/logging
  93. consolelogging="on"
  94. logdays="7"
  95. ## Monitor | https://docs.linuxgsm.com/commands/monitor
  96. # Query delay time
  97. querydelay="1"
  98. ## ANSI Colors | https://docs.linuxgsm.com/features/ansi-colors
  99. ansi="on"
  100. #### Advanced Settings ####
  101. ## Message Display Time | https://docs.linuxgsm.com/features/message-display-time
  102. sleeptime="0.5"
  103. ## SteamCMD Settings | https://docs.linuxgsm.com/steamcmd
  104. # Server appid
  105. appid="220070"
  106. steamcmdforcewindows="no"
  107. # SteamCMD Branch | https://docs.linuxgsm.com/steamcmd/branch
  108. branch=""
  109. betapassword=""
  110. # Master Server | https://docs.linuxgsm.com/steamcmd/steam-master-server
  111. steammaster="false"
  112. ## Stop Mode | https://docs.linuxgsm.com/features/stop-mode
  113. # 1: tmux kill
  114. # 2: CTRL+c
  115. # 3: quit
  116. # 4: quit 120s
  117. # 5: stop
  118. # 6: q
  119. # 7: exit
  120. # 8: 7 Days to Die
  121. # 9: GoldSrc
  122. # 10: Avorion
  123. # 11: end
  124. stopmode="2"
  125. ## Query mode
  126. # 1: session only
  127. # 2: gamedig (gsquery fallback)
  128. # 3: gamedig
  129. # 4: gsquery
  130. # 5: tcp
  131. querymode="2"
  132. querytype="protocol-valve"
  133. ## Console type
  134. consoleverbose="yes"
  135. consoleinteract="no"
  136. ## Game Server Details
  137. # Do not edit
  138. gamename="Chivalry: Medieval Warfare"
  139. engine="unreal3"
  140. glibc="2.15"
  141. #### Directories ####
  142. # Edit with care
  143. ## Game Server Directories
  144. systemdir="${serverfiles}"
  145. executabledir="${systemdir}/Binaries/Linux"
  146. executable="./UDKGameServer-Linux"
  147. servercfgdir="${systemdir}/UDKGame/Config/${selfname}"
  148. servercfg="PCServer-UDKGame.ini"
  149. servercfgdefault="PCServer-UDKGame.ini"
  150. servercfgfullpath="${servercfgdir}/${servercfg}"
  151. ## Backup Directory
  152. backupdir="${lgsmdir}/backup"
  153. ## Logging Directories
  154. [ -n "${LGSM_LOGDIR}" ] && logdir="${LGSM_LOGDIR}" || logdir="${rootdir}/log"
  155. gamelogdir="${systemdir}/Saved/Logs"
  156. lgsmlogdir="${logdir}/script"
  157. consolelogdir="${logdir}/console"
  158. gamelog="${gamelogdir}/${selfname}-game.log"
  159. lgsmlog="${lgsmlogdir}/${selfname}-script.log"
  160. consolelog="${consolelogdir}/${selfname}-console.log"
  161. alertlog="${lgsmlogdir}/${selfname}-alert.log"
  162. postdetailslog="${lgsmlogdir}/${selfname}-postdetails.log"
  163. ## Logs Naming
  164. lgsmlogdate="${lgsmlogdir}/${selfname}-script-$(date '+%Y-%m-%d-%H:%M:%S').log"
  165. consolelogdate="${consolelogdir}/${selfname}-console-$(date '+%Y-%m-%d-%H:%M:%S').log"
  166. gamelogdate="${gamelogdir}/${selfname}-game-$(date '+%Y-%m-%d-%H:%M:%S').log"
  167. ## Log Parameters
  168. logtimestamp="off"
  169. logtimestampformat="%Y-%m-%d %H:%M:%S"