_default.cfg 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  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 - applys settings to every instance
  7. # [instance].cfg - applys settings to specific instance
  8. #### Server Settings ####
  9. ## Server Start Settings | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters
  10. port="7777"
  11. queryport="27015"
  12. rconport="27020"
  13. maxplayers="70"
  14. ip="0.0.0.0"
  15. ## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters
  16. fn_parms(){
  17. parms="\"TheIsland?listen?MultiHome=${ip}?MaxPlayers=${maxplayers}?QueryPort=${queryport}?RCONPort=${rconport}?Port=${port}?\""
  18. }
  19. #### LinuxGSM Settings ####
  20. ## Notification Alerts
  21. # (on|off)
  22. # Email Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Email
  23. emailalert="off"
  24. email="email@example.com"
  25. emailfrom=""
  26. # Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet
  27. pushbulletalert="off"
  28. pushbullettoken="accesstoken"
  29. channeltag=""
  30. ## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update
  31. updateonstart="off"
  32. ## Backup | https://github.com/GameServerManagers/LinuxGSM/wiki/Backup
  33. maxbackups="4"
  34. maxbackupdays="30"
  35. stoponbackup="on"
  36. ## Logging | https://github.com/GameServerManagers/LinuxGSM/wiki/Logging
  37. consolelogging="on"
  38. logdays="7"
  39. #### LinuxGSM Advanced Settings ####
  40. ## SteamCMD Settings
  41. # Server appid
  42. appid="376030"
  43. # Steam App Branch Select
  44. # Allows to opt into the various Steam app branches. Default branch is "".
  45. # Example: "-beta latest_experimental"
  46. branch=""
  47. ## LinuxGSM Server Details
  48. # Do not edit
  49. gamename="ARK: Survival Evolved"
  50. engine="unreal4"
  51. #### Directories ####
  52. # Edit with care
  53. ## Server Specific Directories
  54. systemdir="${serverfiles}/ShooterGame"
  55. executabledir="${systemdir}/Binaries/Linux"
  56. executable="./ShooterGameServer"
  57. servercfgdir="${systemdir}/Saved/Config/LinuxServer"
  58. servercfg="GameUserSettings.ini"
  59. servercfgdefault="GameUserSettings.ini"
  60. servercfgfullpath="${servercfgdir}/${servercfg}"
  61. ## Backup Directory
  62. backupdir="${lgsmdir}/backup"
  63. ## Logging Directories
  64. logdir="${logdir}"
  65. gamelogdir="${systemdir}/Saved/Logs"
  66. scriptlogdir="${logdir}/script"
  67. consolelogdir="${logdir}/console"
  68. scriptlog="${scriptlogdir}/${servicename}-script.log"
  69. consolelog="${consolelogdir}/${servicename}-console.log"
  70. emaillog="${scriptlogdir}/${servicename}-email.log"
  71. ## Logs Naming
  72. scriptlogdate="${scriptlogdir}/${servicename}-script-$(date '+%Y-%m-%d-%H:%M:%S').log"
  73. consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%Y-%m-%d-%H:%M:%S').log"