_default.cfg 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  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="${filesdir}/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="${rootdir}/backups"
  63. ## Logging Directories
  64. gamelogdir="${systemdir}/Saved/Logs"
  65. scriptlogdir="${rootdir}/log/script"
  66. consolelogdir="${rootdir}/log/console"
  67. scriptlog="${scriptlogdir}/${servicename}-script.log"
  68. consolelog="${consolelogdir}/${servicename}-console.log"
  69. emaillog="${scriptlogdir}/${servicename}-email.log"
  70. ## Logs Naming
  71. scriptlogdate="${scriptlogdir}/${servicename}-script-$(date '+%Y-%m-%d-%H:%M:%S').log"
  72. consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%Y-%m-%d-%H:%M:%S').log"