_default.cfg 2.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  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. ip="0.0.0.0"
  11. port="7777"
  12. queryport="27015"
  13. rconport="27020"
  14. maxplayers="70"
  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. # Discord Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Discord
  31. discordalert="off"
  32. discordwebhook="https://discordapp.com/api/webhooks/12345/abcd12345"
  33. ## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update
  34. updateonstart="off"
  35. ## Backup | https://github.com/GameServerManagers/LinuxGSM/wiki/Backup
  36. maxbackups="4"
  37. maxbackupdays="30"
  38. stoponbackup="on"
  39. ## Logging | https://github.com/GameServerManagers/LinuxGSM/wiki/Logging
  40. consolelogging="on"
  41. logdays="7"
  42. #### LinuxGSM Advanced Settings ####
  43. ## SteamCMD Settings
  44. # Server appid
  45. appid="376030"
  46. # Steam App Branch Select
  47. # Allows to opt into the various Steam app branches. Default branch is "".
  48. # Example: "-beta latest_experimental"
  49. branch=""
  50. ## LinuxGSM Server Details
  51. # Do not edit
  52. gamename="ARK: Survival Evolved"
  53. engine="unreal4"
  54. #### Directories ####
  55. # Edit with care
  56. ## Server Specific Directories
  57. systemdir="${serverfiles}/ShooterGame"
  58. executabledir="${systemdir}/Binaries/Linux"
  59. executable="./ShooterGameServer"
  60. servercfgdir="${systemdir}/Saved/Config/LinuxServer"
  61. servercfg="GameUserSettings.ini"
  62. servercfgdefault="GameUserSettings.ini"
  63. servercfgfullpath="${servercfgdir}/${servercfg}"
  64. ## Backup Directory
  65. backupdir="${lgsmdir}/backup"
  66. ## Logging Directories
  67. logdir="${rootdir}/log"
  68. gamelogdir="${systemdir}/Saved/Logs"
  69. lgsmlogdir="${logdir}/script"
  70. consolelogdir="${logdir}/console"
  71. lgsmlog="${lgsmlogdir}/${servicename}-script.log"
  72. consolelog="${consolelogdir}/${servicename}-console.log"
  73. emaillog="${lgsmlogdir}/${servicename}-email.log"
  74. ## Logs Naming
  75. lgsmlogdate="${lgsmlogdir}/${servicename}-script-$(date '+%Y-%m-%d-%H:%M:%S').log"
  76. consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%Y-%m-%d-%H:%M:%S').log"