_default.cfg 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  1. ##################################
  2. ######## Default Settings ########
  3. ##################################
  4. # DO NOT EDIT 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. #### Server Settings ####
  9. ## Server Start Settings | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters
  10. port="7777"
  11. queryport="27015"
  12. defaultmap="Outpost"
  13. servername="LinuxGSM Server"
  14. maxplayers="8" # Can not be adjusted currently
  15. ## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters
  16. fn_parms(){
  17. parms="Port=${port}?QueryPort=${queryport} -startup_map '${defaultmap}' -server_name '${servername}'"
  18. }
  19. #### LinuxGSM Settings ####
  20. ## Notification Alerts
  21. # (on|off)
  22. # More info | https://github.com/GameServerManagers/LinuxGSM/wiki/Alerts#more-info
  23. postalert="off"
  24. postdays="7"
  25. posttarget="https://hastebin.com"
  26. # Discord Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Discord
  27. discordalert="off"
  28. discordwebhook="webhook"
  29. # Email Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Email
  30. emailalert="off"
  31. email="email@example.com"
  32. emailfrom=""
  33. # IFTTT Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/IFTTT
  34. iftttalert="off"
  35. ifttttoken="accesstoken"
  36. iftttevent="linuxgsm_alert"
  37. # Mailgun Email Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/mailgun
  38. mailgunalert="off"
  39. mailguntoken="accesstoken"
  40. mailgundomain="example.com"
  41. mailgunemailfrom="alert@example.com"
  42. mailgunemail="email@myemail.com"
  43. # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet
  44. pushbulletalert="off"
  45. pushbullettoken="accesstoken"
  46. channeltag=""
  47. # Pushover Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushover
  48. pushoveralert="off"
  49. pushovertoken="accesstoken"
  50. # Telegram Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Telegram
  51. # You can add a custom cURL string eg proxy (useful in Russia) or else in "curlcustomstring".
  52. # like a "--socks5 ipaddr:port" for socks5 proxy see more in "curl --help", if you not need
  53. # any custom string in curl - simple ignore this parameter.
  54. telegramalert="off"
  55. telegramtoken="accesstoken"
  56. telegramchatid=""
  57. curlcustomstring=""
  58. ## Backup | https://github.com/GameServerManagers/LinuxGSM/wiki/Backup
  59. maxbackups="4"
  60. maxbackupdays="30"
  61. stoponbackup="on"
  62. ## Logging | https://github.com/GameServerManagers/LinuxGSM/wiki/Logging
  63. consolelogging="on"
  64. logdays="7"
  65. #### LinuxGSM Advanced Settings ####
  66. # ANSI Colors
  67. ansi="on"
  68. ## SteamCMD Settings
  69. # Server appid
  70. appid="974130"
  71. # Steam App Branch Select
  72. # Allows to opt into the various Steam app branches. Default branch is "".
  73. # Example: "-beta latest_experimental"
  74. branch=""
  75. ## LinuxGSM Server Details
  76. # Do not edit
  77. gamename="StickyBots"
  78. engine="unreal4"
  79. #### Directories ####
  80. # Edit with care
  81. ## Server Specific Directories
  82. systemdir="${serverfiles}"
  83. executabledir="${systemdir}/blank1/Binaries/Linux"
  84. executable="./blank1Server-Linux-Shipping"
  85. servercfg="StickyBotsSettings.ini"
  86. servercfgdir="${systemdir}/blank1/Saved/Config/Windows"
  87. servercfgfullpath="${servercfgdir}/${servercfg}"
  88. ## Backup Directory
  89. backupdir="${rootdir}/backups"
  90. ## Logging Directories
  91. logdir="${rootdir}/log"
  92. gamelogdir="${serverfiles}/Logs"
  93. lgsmlogdir="${logdir}/script"
  94. consolelogdir="${logdir}/console"
  95. lgsmlog="${lgsmlogdir}/${servicename}-script.log"
  96. consolelog="${consolelogdir}/${servicename}-console.log"
  97. alertlog="${lgsmlogdir}/${servicename}-alert.log"
  98. postdetailslog="${lgsmlogdir}/${servicename}-postdetails.log"
  99. ## Logs Naming
  100. lgsmlogdate="${lgsmlogdir}/${servicename}-script-$(date '+%Y-%m-%d-%H:%M:%S').log"
  101. consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%Y-%m-%d-%H:%M:%S').log"